Quick fix to a test that is currently failing on every Linux build bot. No idea
authorChandler Carruth <chandlerc@gmail.com>
Wed, 27 Jan 2010 10:36:15 +0000 (10:36 +0000)
committerChandler Carruth <chandlerc@gmail.com>
Wed, 27 Jan 2010 10:36:15 +0000 (10:36 +0000)
if this is the "correct" fix, but it seems a strict improvement.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94675 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/X86/tailcall2.ll

index f1eb1529c12340e9794a64484c363d3408e018a4..11d02dabbc30be81aca6f9444eafa7bef36cb5e3 100644 (file)
@@ -4,7 +4,7 @@
 define void @bar(i32 %x) nounwind ssp {
 entry:
 ; CHECK: bar:
-; CHECK: jmp _foo
+; CHECK: jmp {{_?}}foo
   tail call void @foo() nounwind
   ret void
 }