diff options
author | Hans Wennborg <hans@hanshq.net> | 2015-04-16 15:09:33 +0000 |
---|---|---|
committer | Hans Wennborg <hans@hanshq.net> | 2015-04-16 15:09:33 +0000 |
commit | feaf512839ebb7b8ccf11fcacde86f82702174a0 (patch) | |
tree | c7560f5877fba6c2a9e5e08a0d177391c91c76c1 /llvm/test/CodeGen | |
parent | a11db3eb8835f63ae5fbf4b1d2c5bc649fcee628 (diff) | |
download | bcm5719-llvm-feaf512839ebb7b8ccf11fcacde86f82702174a0.tar.gz bcm5719-llvm-feaf512839ebb7b8ccf11fcacde86f82702174a0.zip |
Add a triple to switch.ll test.
llvm-svn: 235103
Diffstat (limited to 'llvm/test/CodeGen')
-rw-r--r-- | llvm/test/CodeGen/X86/switch.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/X86/switch.ll b/llvm/test/CodeGen/X86/switch.ll index 91252b35dfe..5bacd907930 100644 --- a/llvm/test/CodeGen/X86/switch.ll +++ b/llvm/test/CodeGen/X86/switch.ll @@ -1,5 +1,5 @@ -; RUN: llc -march=x86-64 %s -o - | FileCheck %s -; RUN: llc -march=x86-64 %s -o - -O0 | FileCheck --check-prefix=NOOPT %s +; RUN: llc -mtriple=x86_64-linux-gnu %s -o - | FileCheck %s +; RUN: llc -mtriple=x86_64-linux-gnu %s -o - -O0 | FileCheck --check-prefix=NOOPT %s declare void @g(i32) |