diff options
Diffstat (limited to 'test/CodeGen/NVPTX/load-sext-i1.ll')
-rw-r--r-- | test/CodeGen/NVPTX/load-sext-i1.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/NVPTX/load-sext-i1.ll b/test/CodeGen/NVPTX/load-sext-i1.ll index d836740..9fc98a4 100644 --- a/test/CodeGen/NVPTX/load-sext-i1.ll +++ b/test/CodeGen/NVPTX/load-sext-i1.ll @@ -6,8 +6,8 @@ target triple = "nvptx-nvidia-cuda" define void @main(i1* %a1, i32 %a2, i32* %arg3) { ; CHECK: ld.u8 ; CHECK-NOT: ld.u1 - %t1 = getelementptr i1* %a1, i32 %a2 - %t2 = load i1* %t1 + %t1 = getelementptr i1, i1* %a1, i32 %a2 + %t2 = load i1, i1* %t1 %t3 = sext i1 %t2 to i32 store i32 %t3, i32* %arg3 ret void |