diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2014-07-25 09:55:01 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2014-07-25 09:55:01 +0000 |
commit | b4553da4814e0f0fe8335eda3347c8613f2ece3b (patch) | |
tree | 8070e4349501da69dff9a66d6408add7e6240282 | |
parent | dd620a242a9729204fd06b1ab6c542aab7167719 (diff) | |
download | bcm5719-llvm-b4553da4814e0f0fe8335eda3347c8613f2ece3b.tar.gz bcm5719-llvm-b4553da4814e0f0fe8335eda3347c8613f2ece3b.zip |
llvm/test/CodeGen/ARM/inlineasm-global.ll: Add explicit triple to appease targeting *-win32.
llvm-svn: 213933
-rw-r--r-- | llvm/test/CodeGen/ARM/inlineasm-global.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/ARM/inlineasm-global.ll b/llvm/test/CodeGen/ARM/inlineasm-global.ll index 834624c28fa..fd210f42092 100644 --- a/llvm/test/CodeGen/ARM/inlineasm-global.ll +++ b/llvm/test/CodeGen/ARM/inlineasm-global.ll @@ -1,5 +1,5 @@ -; RUN: llc -march thumb -no-integrated-as < %s | FileCheck %s --check-prefix=THUMB -; RUN: llc -march arm -no-integrated-as < %s | FileCheck %s --check-prefix=ARM +; RUN: llc -mtriple=thumb-unknown-unknown -no-integrated-as < %s | FileCheck %s --check-prefix=THUMB +; RUN: llc -mtriple=arm-unknown-unknown -no-integrated-as < %s | FileCheck %s --check-prefix=ARM ; In thumb mode, emit ".code 16" before global inline-asm instructions. |