diff options
Diffstat (limited to 'test/CodeGen/SystemZ/fp-move-09.ll')
-rw-r--r-- | test/CodeGen/SystemZ/fp-move-09.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CodeGen/SystemZ/fp-move-09.ll b/test/CodeGen/SystemZ/fp-move-09.ll index 52b2ee2..e4a3e92 100644 --- a/test/CodeGen/SystemZ/fp-move-09.ll +++ b/test/CodeGen/SystemZ/fp-move-09.ll @@ -9,7 +9,7 @@ define float @f1(i16 *%ptr) { ; CHECK: oihh [[REG]], 16256 ; CHECK: ldgr %f0, [[REG]] ; CHECK: br %r14 - %base = load i16 *%ptr + %base = load i16 , i16 *%ptr %ext = zext i16 %base to i32 %full = or i32 %ext, 1065353216 %res = bitcast i32 %full to float @@ -38,7 +38,7 @@ define void @f3(float %val, i8 *%ptr, i32 %which) { ; CHECK: br %r14 %int = bitcast float %val to i32 %trunc = trunc i32 %int to i8 - %old = load i8 *%ptr + %old = load i8 , i8 *%ptr %cmp = icmp eq i32 %which, 0 %res = select i1 %cmp, i8 %trunc, i8 %old store i8 %res, i8 *%ptr @@ -54,7 +54,7 @@ define void @f4(float %val, i16 *%ptr, i32 %which) { ; CHECK: br %r14 %int = bitcast float %val to i32 %trunc = trunc i32 %int to i16 - %old = load i16 *%ptr + %old = load i16 , i16 *%ptr %cmp = icmp eq i32 %which, 0 %res = select i1 %cmp, i16 %trunc, i16 %old store i16 %res, i16 *%ptr |