[llvm-commits] [llvm] r94675 - /llvm/trunk/test/CodeGen/X86/tailcall2.ll

Chandler Carruth chandlerc at gmail.com
Wed Jan 27 02:36:15 PST 2010


Author: chandlerc
Date: Wed Jan 27 04:36:15 2010
New Revision: 94675

URL: http://llvm.org/viewvc/llvm-project?rev=94675&view=rev
Log:
Quick fix to a test that is currently failing on every Linux build bot. No idea
if this is the "correct" fix, but it seems a strict improvement.

Modified:
    llvm/trunk/test/CodeGen/X86/tailcall2.ll

Modified: llvm/trunk/test/CodeGen/X86/tailcall2.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/tailcall2.ll?rev=94675&r1=94674&r2=94675&view=diff

==============================================================================
--- llvm/trunk/test/CodeGen/X86/tailcall2.ll (original)
+++ llvm/trunk/test/CodeGen/X86/tailcall2.ll Wed Jan 27 04:36:15 2010
@@ -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
 }





More information about the llvm-commits mailing list