Skip to content

Commit 35e2f4e

Browse files
committed
Fix identation of a rustfmt::skiped statement
1 parent 337af7c commit 35e2f4e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/tools/miri/tests/pass/intrinsics-x86-sse2.rs

+6-6
Original file line numberDiff line numberDiff line change
@@ -117,12 +117,12 @@ mod tests {
117117
#[target_feature(enable = "sse2")]
118118
unsafe fn test_mm_sad_epu8() {
119119
#[rustfmt::skip]
120-
let a = _mm_setr_epi8(
121-
255u8 as i8, 254u8 as i8, 253u8 as i8, 252u8 as i8,
122-
1, 2, 3, 4,
123-
155u8 as i8, 154u8 as i8, 153u8 as i8, 152u8 as i8,
124-
1, 2, 3, 4,
125-
);
120+
let a = _mm_setr_epi8(
121+
255u8 as i8, 254u8 as i8, 253u8 as i8, 252u8 as i8,
122+
1, 2, 3, 4,
123+
155u8 as i8, 154u8 as i8, 153u8 as i8, 152u8 as i8,
124+
1, 2, 3, 4,
125+
);
126126
let b = _mm_setr_epi8(0, 0, 0, 0, 2, 1, 2, 1, 1, 1, 1, 1, 1, 2, 1, 2);
127127
let r = _mm_sad_epu8(a, b);
128128
let e = _mm_setr_epi64x(1020, 614);

0 commit comments

Comments
 (0)