[llvm] r313984 - [x86] update test to use FileCheck; NFC

Sanjay Patel via llvm-commits llvm-commits at lists.llvm.org
Fri Sep 22 07:29:47 PDT 2017


Author: spatel
Date: Fri Sep 22 07:29:47 2017
New Revision: 313984

URL: http://llvm.org/viewvc/llvm-project?rev=313984&view=rev
Log:
[x86] update test to use FileCheck; NFC

Modified:
    llvm/trunk/test/CodeGen/X86/live-out-reg-info.ll

Modified: llvm/trunk/test/CodeGen/X86/live-out-reg-info.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/live-out-reg-info.ll?rev=313984&r1=313983&r2=313984&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/live-out-reg-info.ll (original)
+++ llvm/trunk/test/CodeGen/X86/live-out-reg-info.ll Fri Sep 22 07:29:47 2017
@@ -1,4 +1,5 @@
-; RUN: llc < %s -mtriple=x86_64-- | grep testb
+; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
+; RUN: llc < %s -mtriple=x86_64-unknown-unknown | FileCheck %s
 
 ; Make sure dagcombine doesn't eliminate the comparison due
 ; to an off-by-one bug with computeKnownBits information.
@@ -6,6 +7,20 @@
 declare void @qux()
 
 define void @foo(i32 %a) {
+; CHECK-LABEL: foo:
+; CHECK:       # BB#0:
+; CHECK-NEXT:    pushq %rax
+; CHECK-NEXT:  .Lcfi0:
+; CHECK-NEXT:    .cfi_def_cfa_offset 16
+; CHECK-NEXT:    movl %edi, %eax
+; CHECK-NEXT:    shrl $23, %eax
+; CHECK-NEXT:    testb $1, %ah
+; CHECK-NEXT:    jne .LBB0_2
+; CHECK-NEXT:  # BB#1: # %true
+; CHECK-NEXT:    callq qux
+; CHECK-NEXT:  .LBB0_2: # %false
+; CHECK-NEXT:    popq %rax
+; CHECK-NEXT:    retq
   %t0 = lshr i32 %a, 23
   br label %next
 next:
@@ -18,3 +33,4 @@ true:
 false:
   ret void
 }
+




More information about the llvm-commits mailing list