diff options
author | Tim Northover <Tim.Northover@arm.com> | 2013-02-01 11:40:47 +0000 |
---|---|---|
committer | Tim Northover <Tim.Northover@arm.com> | 2013-02-01 11:40:47 +0000 |
commit | e3d42364023159e65365326f1291783710b5f98f (patch) | |
tree | cd336215f15103d2ddfe1d773b06999cd3484e76 /llvm/test/CodeGen/AArch64/inline-asm-modifiers.ll | |
parent | 83d4e783b07483812d37f8266a3a539ac4246018 (diff) | |
download | bcm5719-llvm-e3d42364023159e65365326f1291783710b5f98f.tar.gz bcm5719-llvm-e3d42364023159e65365326f1291783710b5f98f.zip |
Add explicit triples to AArch64 tests
Only Linux is supported at the moment, and other platforms quickly fault. As a
result these tests would fail on non-Linux hosts. It may be worth making the
tests more generic again as more platforms are supported.
llvm-svn: 174170
Diffstat (limited to 'llvm/test/CodeGen/AArch64/inline-asm-modifiers.ll')
-rw-r--r-- | llvm/test/CodeGen/AArch64/inline-asm-modifiers.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/AArch64/inline-asm-modifiers.ll b/llvm/test/CodeGen/AArch64/inline-asm-modifiers.ll index 5b485aac3f8..3b55945561e 100644 --- a/llvm/test/CodeGen/AArch64/inline-asm-modifiers.ll +++ b/llvm/test/CodeGen/AArch64/inline-asm-modifiers.ll @@ -1,5 +1,5 @@ -; RUN: llc -march=aarch64 -relocation-model=pic < %s | FileCheck %s -; RUN: llc -march=aarch64 -relocation-model=pic -filetype=obj < %s | llvm-objdump -r - | FileCheck --check-prefix=CHECK-ELF %s +; RUN: llc -mtriple=aarch64-none-linux-gnu -relocation-model=pic < %s | FileCheck %s +; RUN: llc -mtriple=aarch64-none-linux-gnu -relocation-model=pic -filetype=obj < %s | llvm-objdump -r - | FileCheck --check-prefix=CHECK-ELF %s @var_simple = hidden global i32 0 @var_got = global i32 0 |