diff options
Diffstat (limited to 'test/CodeGen/AArch64/arm64-strict-align.ll')
-rw-r--r-- | test/CodeGen/AArch64/arm64-strict-align.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/AArch64/arm64-strict-align.ll b/test/CodeGen/AArch64/arm64-strict-align.ll index 5d13704..b707527 100644 --- a/test/CodeGen/AArch64/arm64-strict-align.ll +++ b/test/CodeGen/AArch64/arm64-strict-align.ll @@ -10,7 +10,7 @@ define i32 @f0(i32* nocapture %p) nounwind { ; CHECK: ldr w0, [x0] ; CHECK: ret - %tmp = load i32* %p, align 2 + %tmp = load i32, i32* %p, align 2 ret i32 %tmp } @@ -21,6 +21,6 @@ define i64 @f1(i64* nocapture %p) nounwind { ; CHECK: ldr x0, [x0] ; CHECK: ret - %tmp = load i64* %p, align 4 + %tmp = load i64, i64* %p, align 4 ret i64 %tmp } |