diff options
| author | Chandler Carruth <chandlerc@gmail.com> | 2010-01-27 10:36:15 +0000 |
|---|---|---|
| committer | Chandler Carruth <chandlerc@gmail.com> | 2010-01-27 10:36:15 +0000 |
| commit | e64deaf7ceb489b58c0f4cbdf9fc6c87212af07e (patch) | |
| tree | a8529df223598b4a547ac55d2e0d1dae177b47a2 | |
| parent | 9f4185e3a1ab4cc49e93d38afcfa29d6777d38cc (diff) | |
| download | external_llvm-e64deaf7ceb489b58c0f4cbdf9fc6c87212af07e.zip external_llvm-e64deaf7ceb489b58c0f4cbdf9fc6c87212af07e.tar.gz external_llvm-e64deaf7ceb489b58c0f4cbdf9fc6c87212af07e.tar.bz2 | |
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.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94675 91177308-0d34-0410-b5e6-96231b3b80d8
| -rw-r--r-- | test/CodeGen/X86/tailcall2.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/X86/tailcall2.ll b/test/CodeGen/X86/tailcall2.ll index f1eb152..11d02da 100644 --- a/test/CodeGen/X86/tailcall2.ll +++ b/test/CodeGen/X86/tailcall2.ll @@ -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 } |
