[llvm] r269122 - update test to use FileCheck for tighter checking

Sanjay Patel via llvm-commits llvm-commits at lists.llvm.org
Tue May 10 14:42:10 PDT 2016


Author: spatel
Date: Tue May 10 16:42:09 2016
New Revision: 269122

URL: http://llvm.org/viewvc/llvm-project?rev=269122&view=rev
Log:
update test to use FileCheck for tighter checking

Modified:
    llvm/trunk/test/CodeGen/X86/urem-i8-constant.ll

Modified: llvm/trunk/test/CodeGen/X86/urem-i8-constant.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/urem-i8-constant.ll?rev=269122&r1=269121&r2=269122&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/urem-i8-constant.ll (original)
+++ llvm/trunk/test/CodeGen/X86/urem-i8-constant.ll Tue May 10 16:42:09 2016
@@ -1,6 +1,20 @@
-; RUN: llc < %s -march=x86 | grep 111
+; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
+; RUN: llc < %s -mtriple=i386-unknown-unknown | FileCheck %s
 
 define i8 @foo(i8 %tmp325) {
-	%t546 = urem i8 %tmp325, 37
-	ret i8 %t546
+; CHECK-LABEL: foo:
+; CHECK:       # BB#0:
+; CHECK-NEXT:    movzbl {{[0-9]+}}(%esp), %ecx
+; CHECK-NEXT:    imull $111, %ecx, %eax
+; CHECK-NEXT:    andl $28672, %eax # imm = 0x7000
+; CHECK-NEXT:    shrl $12, %eax
+; CHECK-NEXT:    movb $37, %dl
+; CHECK-NEXT:    mulb %dl
+; CHECK-NEXT:    subb %al, %cl
+; CHECK-NEXT:    movl %ecx, %eax
+; CHECK-NEXT:    retl
+;
+  %t546 = urem i8 %tmp325, 37
+  ret i8 %t546
 }
+




More information about the llvm-commits mailing list