diff options
Diffstat (limited to 'test/ExecutionEngine/MCJIT/test-common-symbols-alignment.ll')
-rw-r--r-- | test/ExecutionEngine/MCJIT/test-common-symbols-alignment.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ExecutionEngine/MCJIT/test-common-symbols-alignment.ll b/test/ExecutionEngine/MCJIT/test-common-symbols-alignment.ll index a425b5c..1bb0744 100644 --- a/test/ExecutionEngine/MCJIT/test-common-symbols-alignment.ll +++ b/test/ExecutionEngine/MCJIT/test-common-symbols-alignment.ll @@ -13,7 +13,7 @@ entry: %ptr = alloca i32, align 4 store i32 0, i32* %retval store i32 ptrtoint (i32* @CS3 to i32), i32* %ptr, align 4 - %0 = load i32* %ptr, align 4 + %0 = load i32, i32* %ptr, align 4 %and = and i32 %0, 15 %tobool = icmp ne i32 %and, 0 br i1 %tobool, label %if.then, label %if.else @@ -27,6 +27,6 @@ if.else: ; preds = %entry br label %return return: ; preds = %if.else, %if.then - %1 = load i32* %retval + %1 = load i32, i32* %retval ret i32 %1 } |