[llvm-commits] [llvm] r148214 - /llvm/trunk/test/CodeGen/X86/shift-combine.ll
Chandler Carruth
chandlerc at gmail.com
Sun Jan 15 01:38:59 PST 2012
Author: chandlerc
Date: Sun Jan 15 03:38:59 2012
New Revision: 148214
URL: http://llvm.org/viewvc/llvm-project?rev=148214&view=rev
Log:
Relax the FileCheck assertion a bit -- all we really care about is that
we're loading from the global array, not how it is spelled in the asm.
This should fix the MSVC bots.
Modified:
llvm/trunk/test/CodeGen/X86/shift-combine.ll
Modified: llvm/trunk/test/CodeGen/X86/shift-combine.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/shift-combine.ll?rev=148214&r1=148213&r2=148214&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/shift-combine.ll (original)
+++ llvm/trunk/test/CodeGen/X86/shift-combine.ll Sun Jan 15 03:38:59 2012
@@ -6,7 +6,7 @@
; CHECK: test_lshr_and:
; CHECK-NOT: shrl
; CHECK: andl $12,
-; CHECK: movl array(%{{...}}),
+; CHECK: movl {{.*}}array{{.*}},
; CHECK: ret
entry:
More information about the llvm-commits
mailing list