diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2012-01-15 09:38:59 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2012-01-15 09:38:59 +0000 |
commit | 980bce2ebda6de40e05c80d008e758c00a6dbb00 (patch) | |
tree | 5c227581f28a55eca3d2ed6f9019443fa9948a8d /test/CodeGen | |
parent | 482e4a8711ae78a5cb1039c946952294491cd294 (diff) | |
download | external_llvm-980bce2ebda6de40e05c80d008e758c00a6dbb00.zip external_llvm-980bce2ebda6de40e05c80d008e758c00a6dbb00.tar.gz external_llvm-980bce2ebda6de40e05c80d008e758c00a6dbb00.tar.bz2 |
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.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@148214 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen')
-rw-r--r-- | test/CodeGen/X86/shift-combine.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/X86/shift-combine.ll b/test/CodeGen/X86/shift-combine.ll index 0a6ea28..51f8303 100644 --- a/test/CodeGen/X86/shift-combine.ll +++ b/test/CodeGen/X86/shift-combine.ll @@ -6,7 +6,7 @@ define i32 @test_lshr_and(i32 %x) { ; CHECK: test_lshr_and: ; CHECK-NOT: shrl ; CHECK: andl $12, -; CHECK: movl array(%{{...}}), +; CHECK: movl {{.*}}array{{.*}}, ; CHECK: ret entry: |