diff options
| author | bors <bors@rust-lang.org> | 2014-10-03 05:02:37 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2014-10-03 05:02:37 +0000 |
| commit | aa034cd3bac3155e0f6c74c399314b5ee32f88fc (patch) | |
| tree | 891acff8f9158a69e1884707ca3bfb70d749db2e /src/test/debuginfo/simd.rs | |
| parent | d0af3feebb57bc58c52de69ab51f92dc7082500b (diff) | |
| parent | d911936dbdc645133ad9605f45d2bf10b73e2b20 (diff) | |
| download | rust-aa034cd3bac3155e0f6c74c399314b5ee32f88fc.tar.gz rust-aa034cd3bac3155e0f6c74c399314b5ee32f88fc.zip | |
auto merge of #17725 : alexcrichton/rust/rollup, r=alexcrichton
Diffstat (limited to 'src/test/debuginfo/simd.rs')
| -rw-r--r-- | src/test/debuginfo/simd.rs | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/src/test/debuginfo/simd.rs b/src/test/debuginfo/simd.rs index eee1d0e70ca..e355327a5ef 100644 --- a/src/test/debuginfo/simd.rs +++ b/src/test/debuginfo/simd.rs @@ -18,27 +18,27 @@ // gdb-command:run // gdb-command:finish -// gdb-command:print/d i8x16 +// gdb-command:print/d vi8x16 // gdb-check:$1 = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15} -// gdb-command:print/d i16x8 +// gdb-command:print/d vi16x8 // gdb-check:$2 = {16, 17, 18, 19, 20, 21, 22, 23} -// gdb-command:print/d i32x4 +// gdb-command:print/d vi32x4 // gdb-check:$3 = {24, 25, 26, 27} -// gdb-command:print/d i64x2 +// gdb-command:print/d vi64x2 // gdb-check:$4 = {28, 29} -// gdb-command:print/d u8x16 +// gdb-command:print/d vu8x16 // gdb-check:$5 = {30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45} -// gdb-command:print/d u16x8 +// gdb-command:print/d vu16x8 // gdb-check:$6 = {46, 47, 48, 49, 50, 51, 52, 53} -// gdb-command:print/d u32x4 +// gdb-command:print/d vu32x4 // gdb-check:$7 = {54, 55, 56, 57} -// gdb-command:print/d u64x2 +// gdb-command:print/d vu64x2 // gdb-check:$8 = {58, 59} -// gdb-command:print f32x4 +// gdb-command:print vf32x4 // gdb-check:$9 = {60.5, 61.5, 62.5, 63.5} -// gdb-command:print f64x2 +// gdb-command:print vf64x2 // gdb-check:$10 = {64.5, 65.5} // gdb-command:continue @@ -50,21 +50,21 @@ use std::simd::{i8x16, i16x8,i32x4,i64x2,u8x16,u16x8,u32x4,u64x2,f32x4,f64x2}; fn main() { - let i8x16 = i8x16(0i8, 1i8, 2i8, 3i8, 4i8, 5i8, 6i8, 7i8, + let vi8x16 = i8x16(0i8, 1i8, 2i8, 3i8, 4i8, 5i8, 6i8, 7i8, 8i8, 9i8, 10i8, 11i8, 12i8, 13i8, 14i8, 15i8); - let i16x8 = i16x8(16i16, 17i16, 18i16, 19i16, 20i16, 21i16, 22i16, 23i16); - let i32x4 = i32x4(24i32, 25i32, 26i32, 27i32); - let i64x2 = i64x2(28i64, 29i64); + let vi16x8 = i16x8(16i16, 17i16, 18i16, 19i16, 20i16, 21i16, 22i16, 23i16); + let vi32x4 = i32x4(24i32, 25i32, 26i32, 27i32); + let vi64x2 = i64x2(28i64, 29i64); - let u8x16 = u8x16(30u8, 31u8, 32u8, 33u8, 34u8, 35u8, 36u8, 37u8, + let vu8x16 = u8x16(30u8, 31u8, 32u8, 33u8, 34u8, 35u8, 36u8, 37u8, 38u8, 39u8, 40u8, 41u8, 42u8, 43u8, 44u8, 45u8); - let u16x8 = u16x8(46u16, 47u16, 48u16, 49u16, 50u16, 51u16, 52u16, 53u16); - let u32x4 = u32x4(54u32, 55u32, 56u32, 57u32); - let u64x2 = u64x2(58u64, 59u64); + let vu16x8 = u16x8(46u16, 47u16, 48u16, 49u16, 50u16, 51u16, 52u16, 53u16); + let vu32x4 = u32x4(54u32, 55u32, 56u32, 57u32); + let vu64x2 = u64x2(58u64, 59u64); - let f32x4 = f32x4(60.5f32, 61.5f32, 62.5f32, 63.5f32); - let f64x2 = f64x2(64.5f64, 65.5f64); + let vf32x4 = f32x4(60.5f32, 61.5f32, 62.5f32, 63.5f32); + let vf64x2 = f64x2(64.5f64, 65.5f64); zzz(); } |
