summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/ARM/addrmode.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/ARM/addrmode.ll')
-rw-r--r--test/CodeGen/ARM/addrmode.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/ARM/addrmode.ll b/test/CodeGen/ARM/addrmode.ll
index 8fd1da7..52bb9a2 100644
--- a/test/CodeGen/ARM/addrmode.ll
+++ b/test/CodeGen/ARM/addrmode.ll
@@ -4,14 +4,14 @@
define i32 @t1(i32 %a) {
%b = mul i32 %a, 9
%c = inttoptr i32 %b to i32*
- %d = load i32* %c
+ %d = load i32, i32* %c
ret i32 %d
}
define i32 @t2(i32 %a) {
%b = mul i32 %a, -7
%c = inttoptr i32 %b to i32*
- %d = load i32* %c
+ %d = load i32, i32* %c
ret i32 %d
}