[llvm] r296628 - [x86] regenerate checks; NFC
Sanjay Patel via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 1 06:41:57 PST 2017
Author: spatel
Date: Wed Mar 1 08:41:57 2017
New Revision: 296628
URL: http://llvm.org/viewvc/llvm-project?rev=296628&view=rev
Log:
[x86] regenerate checks; NFC
Modified:
llvm/trunk/test/CodeGen/X86/setcc.ll
Modified: llvm/trunk/test/CodeGen/X86/setcc.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/setcc.ll?rev=296628&r1=296627&r2=296628&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/setcc.ll (original)
+++ llvm/trunk/test/CodeGen/X86/setcc.ll Wed Mar 1 08:41:57 2017
@@ -1,4 +1,4 @@
-; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
+; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
; RUN: llc < %s -mtriple=x86_64-apple-darwin | FileCheck %s
; rdar://7329206
@@ -13,7 +13,6 @@ define zeroext i16 @t1(i16 zeroext %x) n
; CHECK-NEXT: seta %al
; CHECK-NEXT: shll $5, %eax
; CHECK-NEXT: retq
-;
%t0 = icmp ugt i16 %x, 26
%if = select i1 %t0, i16 32, i16 0
ret i16 %if
@@ -26,7 +25,6 @@ define zeroext i16 @t2(i16 zeroext %x) n
; CHECK-NEXT: sbbl %eax, %eax
; CHECK-NEXT: andl $32, %eax
; CHECK-NEXT: retq
-;
%t0 = icmp ult i16 %x, 26
%if = select i1 %t0, i16 32, i16 0
ret i16 %if
@@ -39,7 +37,6 @@ define i64 @t3(i64 %x) nounwind readnone
; CHECK-NEXT: sbbq %rax, %rax
; CHECK-NEXT: andl $64, %eax
; CHECK-NEXT: retq
-;
%t0 = icmp ult i64 %x, 18
%if = select i1 %t0, i64 64, i64 0
ret i64 %if
@@ -56,7 +53,6 @@ define i32 @t4(i32 %a) {
; CHECK-NEXT: andl $32768, %eax ## imm = 0x8000
; CHECK-NEXT: leal 65536(%rax,%rax), %eax
; CHECK-NEXT: retq
-;
%t0 = load i32, i32* @v4, align 4
%not.tobool = icmp eq i32 %t0, 0
%conv.i = sext i1 %not.tobool to i16
@@ -73,7 +69,6 @@ define i8 @t5(i32 %a) #0 {
; CHECK-NEXT: testl %edi, %edi
; CHECK-NEXT: setns %al
; CHECK-NEXT: retq
-;
%.lobit = lshr i32 %a, 31
%trunc = trunc i32 %.lobit to i8
%.not = xor i8 %trunc, 1
@@ -86,7 +81,6 @@ define zeroext i1 @t6(i32 %a) #0 {
; CHECK-NEXT: testl %edi, %edi
; CHECK-NEXT: setns %al
; CHECK-NEXT: retq
-;
%.lobit = lshr i32 %a, 31
%trunc = trunc i32 %.lobit to i1
%.not = xor i1 %trunc, 1
More information about the llvm-commits
mailing list