diff options
Diffstat (limited to 'test/CodeGen/SystemZ/insert-06.ll')
-rw-r--r-- | test/CodeGen/SystemZ/insert-06.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CodeGen/SystemZ/insert-06.ll b/test/CodeGen/SystemZ/insert-06.ll index 81a9c87..3243d9f 100644 --- a/test/CodeGen/SystemZ/insert-06.ll +++ b/test/CodeGen/SystemZ/insert-06.ll @@ -85,7 +85,7 @@ define i64 @f7(i64 %a, i32 *%src) { ; CHECK-NOT: {{%r[23]}} ; CHECK: l %r2, 0(%r3) ; CHECK: br %r14 - %b = load i32 *%src + %b = load i32 , i32 *%src %low = zext i32 %b to i64 %high = and i64 %a, -4294967296 %res = or i64 %high, %low @@ -98,7 +98,7 @@ define i64 @f8(i64 %a, i8 *%src) { ; CHECK-NOT: {{%r[23]}} ; CHECK: lb %r2, 0(%r3) ; CHECK: br %r14 - %byte = load i8 *%src + %byte = load i8 , i8 *%src %b = sext i8 %byte to i32 %low = zext i32 %b to i64 %high = and i64 %a, -4294967296 @@ -185,7 +185,7 @@ define i64 @f15(i64 %a, i8 *%src) { ; CHECK-NOT: {{%r[23]}} ; CHECK: lb %r2, 0(%r3) ; CHECK: br %r14 - %byte = load i8 *%src + %byte = load i8 , i8 *%src %b = sext i8 %byte to i64 %low = and i64 %b, 4294967295 %high = and i64 %a, -4294967296 |