summaryrefslogtreecommitdiffstats
path: root/llvm/test/CodeGen/SystemZ/int-cmp-23.ll
diff options
context:
space:
mode:
authorUlrich Weigand <ulrich.weigand@de.ibm.com>2018-07-20 12:12:10 +0000
committerUlrich Weigand <ulrich.weigand@de.ibm.com>2018-07-20 12:12:10 +0000
commit9dd23b8433d59c516eac0feeef793a40f014cd08 (patch)
tree7d97d4a227ae4c02e8e09684029d3a2a994953c4 /llvm/test/CodeGen/SystemZ/int-cmp-23.ll
parent57743883f11662433c7fe13bf4d59f0fca0e2d33 (diff)
downloadbcm5719-llvm-9dd23b8433d59c516eac0feeef793a40f014cd08.tar.gz
bcm5719-llvm-9dd23b8433d59c516eac0feeef793a40f014cd08.zip
[SystemZ] Test case formatting fixes
Fix systematically wrong whitespace from a prior automated change. NFC. llvm-svn: 337542
Diffstat (limited to 'llvm/test/CodeGen/SystemZ/int-cmp-23.ll')
-rw-r--r--llvm/test/CodeGen/SystemZ/int-cmp-23.ll12
1 files changed, 6 insertions, 6 deletions
diff --git a/llvm/test/CodeGen/SystemZ/int-cmp-23.ll b/llvm/test/CodeGen/SystemZ/int-cmp-23.ll
index a1126e13ca9..cc457849932 100644
--- a/llvm/test/CodeGen/SystemZ/int-cmp-23.ll
+++ b/llvm/test/CodeGen/SystemZ/int-cmp-23.ll
@@ -9,7 +9,7 @@ define double @f1(double %a, double %b, i16 *%ptr) {
; CHECK-NEXT: bhr %r14
; CHECK: ldr %f0, %f2
; CHECK: br %r14
- %val = load i16 , i16 *%ptr
+ %val = load i16, i16 *%ptr
%cond = icmp ugt i16 %val, 1
%res = select i1 %cond, double %a, double %b
ret double %res
@@ -22,7 +22,7 @@ define double @f2(double %a, double %b, i16 *%ptr) {
; CHECK-NEXT: blr %r14
; CHECK: ldr %f0, %f2
; CHECK: br %r14
- %val = load i16 , i16 *%ptr
+ %val = load i16, i16 *%ptr
%cond = icmp ult i16 %val, 65534
%res = select i1 %cond, double %a, double %b
ret double %res
@@ -36,7 +36,7 @@ define double @f3(double %a, double %b, i16 %i1, i16 *%base) {
; CHECK: ldr %f0, %f2
; CHECK: br %r14
%ptr = getelementptr i16, i16 *%base, i64 2047
- %val = load i16 , i16 *%ptr
+ %val = load i16, i16 *%ptr
%cond = icmp ugt i16 %val, 1
%res = select i1 %cond, double %a, double %b
ret double %res
@@ -51,7 +51,7 @@ define double @f4(double %a, double %b, i16 *%base) {
; CHECK: ldr %f0, %f2
; CHECK: br %r14
%ptr = getelementptr i16, i16 *%base, i64 2048
- %val = load i16 , i16 *%ptr
+ %val = load i16, i16 *%ptr
%cond = icmp ugt i16 %val, 1
%res = select i1 %cond, double %a, double %b
ret double %res
@@ -66,7 +66,7 @@ define double @f5(double %a, double %b, i16 *%base) {
; CHECK: ldr %f0, %f2
; CHECK: br %r14
%ptr = getelementptr i16, i16 *%base, i64 -1
- %val = load i16 , i16 *%ptr
+ %val = load i16, i16 *%ptr
%cond = icmp ugt i16 %val, 1
%res = select i1 %cond, double %a, double %b
ret double %res
@@ -82,7 +82,7 @@ define double @f6(double %a, double %b, i64 %base, i64 %index) {
; CHECK: br %r14
%add = add i64 %base, %index
%ptr = inttoptr i64 %add to i16 *
- %val = load i16 , i16 *%ptr
+ %val = load i16, i16 *%ptr
%cond = icmp ugt i16 %val, 1
%res = select i1 %cond, double %a, double %b
ret double %res
OpenPOWER on IntegriCloud