diff options
Diffstat (limited to 'test/CodeGen/NVPTX/vector-compare.ll')
-rw-r--r-- | test/CodeGen/NVPTX/vector-compare.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/NVPTX/vector-compare.ll b/test/CodeGen/NVPTX/vector-compare.ll index 2180499..2992b0e 100644 --- a/test/CodeGen/NVPTX/vector-compare.ll +++ b/test/CodeGen/NVPTX/vector-compare.ll @@ -6,8 +6,8 @@ ; tried to promote <2 x i1> to <2 x i8> and instruction selection failed. define void @foo(<2 x i32>* %a, <2 x i32>* %b, i32* %r1, i32* %r2) { - %aval = load <2 x i32>* %a - %bval = load <2 x i32>* %b + %aval = load <2 x i32>, <2 x i32>* %a + %bval = load <2 x i32>, <2 x i32>* %b %res = icmp slt <2 x i32> %aval, %bval %t1 = extractelement <2 x i1> %res, i32 0 %t2 = extractelement <2 x i1> %res, i32 1 |