diff options
author | Ulrich Weigand <ulrich.weigand@de.ibm.com> | 2018-07-20 12:12:10 +0000 |
---|---|---|
committer | Ulrich Weigand <ulrich.weigand@de.ibm.com> | 2018-07-20 12:12:10 +0000 |
commit | 9dd23b8433d59c516eac0feeef793a40f014cd08 (patch) | |
tree | 7d97d4a227ae4c02e8e09684029d3a2a994953c4 /llvm/test/CodeGen/SystemZ/int-cmp-26.ll | |
parent | 57743883f11662433c7fe13bf4d59f0fca0e2d33 (diff) | |
download | bcm5719-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-26.ll')
-rw-r--r-- | llvm/test/CodeGen/SystemZ/int-cmp-26.ll | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/llvm/test/CodeGen/SystemZ/int-cmp-26.ll b/llvm/test/CodeGen/SystemZ/int-cmp-26.ll index e280c7f6c03..10c137bf9f6 100644 --- a/llvm/test/CodeGen/SystemZ/int-cmp-26.ll +++ b/llvm/test/CodeGen/SystemZ/int-cmp-26.ll @@ -9,7 +9,7 @@ define double @f1(double %a, double %b, i16 *%ptr) { ; CHECK: clhhsi 0(%r2), 0 ; CHECK-NEXT: ber %r14 ; CHECK: br %r14 - %val = load i16 , i16 *%ptr + %val = load i16, i16 *%ptr %ext = zext i16 %val to i32 %cond = icmp eq i32 %ext, 0 %res = select i1 %cond, double %a, double %b @@ -22,7 +22,7 @@ define double @f2(double %a, double %b, i16 *%ptr) { ; CHECK: clhhsi 0(%r2), 65535 ; CHECK-NEXT: ber %r14 ; CHECK: br %r14 - %val = load i16 , i16 *%ptr + %val = load i16, i16 *%ptr %ext = zext i16 %val to i32 %cond = icmp eq i32 %ext, 65535 %res = select i1 %cond, double %a, double %b @@ -34,7 +34,7 @@ define double @f3(double %a, double %b, i16 *%ptr) { ; CHECK-LABEL: f3: ; CHECK-NOT: clhhsi ; CHECK: br %r14 - %val = load i16 , i16 *%ptr + %val = load i16, i16 *%ptr %ext = zext i16 %val to i32 %cond = icmp eq i32 %ext, 65536 %res = select i1 %cond, double %a, double %b @@ -47,7 +47,7 @@ define double @f4(double %a, double %b, i16 *%ptr) { ; CHECK-LABEL: f4: ; CHECK-NOT: clhhsi ; CHECK: br %r14 - %val = load i16 , i16 *%ptr + %val = load i16, i16 *%ptr %ext = zext i16 %val to i32 %cond = icmp eq i32 %ext, -1 %res = select i1 %cond, double %a, double %b @@ -60,7 +60,7 @@ define double @f5(double %a, double %b, i16 *%ptr) { ; CHECK: clhhsi 0(%r2), 0 ; CHECK-NEXT: ber %r14 ; CHECK: br %r14 - %val = load i16 , i16 *%ptr + %val = load i16, i16 *%ptr %ext = sext i16 %val to i32 %cond = icmp eq i32 %ext, 0 %res = select i1 %cond, double %a, double %b @@ -73,7 +73,7 @@ define double @f6(double %a, double %b, i16 *%ptr) { ; CHECK: clhhsi 0(%r2), 32767 ; CHECK-NEXT: ber %r14 ; CHECK: br %r14 - %val = load i16 , i16 *%ptr + %val = load i16, i16 *%ptr %ext = sext i16 %val to i32 %cond = icmp eq i32 %ext, 32767 %res = select i1 %cond, double %a, double %b @@ -86,7 +86,7 @@ define double @f7(double %a, double %b, i16 *%ptr) { ; CHECK-LABEL: f7: ; CHECK-NOT: clhhsi ; CHECK: br %r14 - %val = load i16 , i16 *%ptr + %val = load i16, i16 *%ptr %ext = sext i16 %val to i32 %cond = icmp eq i32 %ext, 32768 %res = select i1 %cond, double %a, double %b @@ -99,7 +99,7 @@ define double @f8(double %a, double %b, i16 *%ptr) { ; CHECK: clhhsi 0(%r2), 65535 ; CHECK-NEXT: ber %r14 ; CHECK: br %r14 - %val = load i16 , i16 *%ptr + %val = load i16, i16 *%ptr %ext = sext i16 %val to i32 %cond = icmp eq i32 %ext, -1 %res = select i1 %cond, double %a, double %b @@ -112,7 +112,7 @@ define double @f9(double %a, double %b, i16 *%ptr) { ; CHECK: clhhsi 0(%r2), 32768 ; CHECK-NEXT: ber %r14 ; CHECK: br %r14 - %val = load i16 , i16 *%ptr + %val = load i16, i16 *%ptr %ext = sext i16 %val to i32 %cond = icmp eq i32 %ext, -32768 %res = select i1 %cond, double %a, double %b @@ -125,7 +125,7 @@ define double @f10(double %a, double %b, i16 *%ptr) { ; CHECK-LABEL: f10: ; CHECK-NOT: clhhsi ; CHECK: br %r14 - %val = load i16 , i16 *%ptr + %val = load i16, i16 *%ptr %ext = sext i16 %val to i32 %cond = icmp eq i32 %ext, -32769 %res = select i1 %cond, double %a, double %b |