diff options
Diffstat (limited to 'llvm/test/CodeGen/PowerPC/available-externally.ll')
-rw-r--r-- | llvm/test/CodeGen/PowerPC/available-externally.ll | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/PowerPC/available-externally.ll b/llvm/test/CodeGen/PowerPC/available-externally.ll index 51b972bd3d7..ec83c67993b 100644 --- a/llvm/test/CodeGen/PowerPC/available-externally.ll +++ b/llvm/test/CodeGen/PowerPC/available-externally.ll @@ -1,3 +1,4 @@ +; RUN: llc -verify-machineinstrs < %s | FileCheck %s -check-prefix=STATIC ; RUN: llc -verify-machineinstrs < %s -relocation-model=static | FileCheck %s -check-prefix=STATIC ; RUN: llc -verify-machineinstrs < %s -relocation-model=pic -mtriple=powerpc-unknown-linux-gnu | FileCheck %s -check-prefix=PIC ; RUN: llc -verify-machineinstrs < %s -relocation-model=pic -mtriple=powerpc-unknown-linux | FileCheck %s -check-prefix=PICELF @@ -14,7 +15,7 @@ target triple = "powerpc-unknown-linux-gnu" define i32 @foo(i64 %x) nounwind { entry: ; STATIC: foo: -; STATIC: bl exact_log2@PLT +; STATIC: bl exact_log2 ; STATIC: blr ; PIC: foo: |