diff options
Diffstat (limited to 'test/CodeGen/ARM/tail-call-weak.ll')
-rw-r--r-- | test/CodeGen/ARM/tail-call-weak.ll | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/test/CodeGen/ARM/tail-call-weak.ll b/test/CodeGen/ARM/tail-call-weak.ll index 466c33d38786e..e0117dffecbf3 100644 --- a/test/CodeGen/ARM/tail-call-weak.ll +++ b/test/CodeGen/ARM/tail-call-weak.ll @@ -1,6 +1,6 @@ ; RUN: llc -mtriple thumbv7-windows-coff -filetype asm -o - %s | FileCheck %s -check-prefix CHECK-COFF -; RUN: llc -mtriple thumbv7-elf -filetype asm -o - %s | FileCheck %s -check-prefix CHECK-ELF -; RUN: llc -mtriple thumbv7-macho -filetype asm -o - %s | FileCheck %s -check-prefix CHECK-MACHO +; RUN: llc -mtriple thumbv7-elf -filetype asm -o - %s | FileCheck %s -check-prefix CHECK-OTHER +; RUN: llc -mtriple thumbv7-macho -filetype asm -o - %s | FileCheck %s -check-prefix CHECK-OTHER declare i8* @f() declare extern_weak i8* @g(i8*) @@ -14,6 +14,5 @@ define void @test() { } ; CHECK-COFF: b g -; CHECK-ELF: bl g -; CHECK-MACHO: blx _g +; CHECK-OTHER: bl {{_?}}g |