diff options
| author | NAKAMURA Takumi <geek4civic@gmail.com> | 2014-07-25 09:54:49 +0000 |
|---|---|---|
| committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2014-07-25 09:54:49 +0000 |
| commit | dd620a242a9729204fd06b1ab6c542aab7167719 (patch) | |
| tree | 689fcb3d1227be9ef94115d9b979f62ed0be16e6 | |
| parent | 3de980d2ff4516c6103c1d9b578d8f459d3caf0e (diff) | |
| download | bcm5719-llvm-dd620a242a9729204fd06b1ab6c542aab7167719.tar.gz bcm5719-llvm-dd620a242a9729204fd06b1ab6c542aab7167719.zip | |
llvm/test/CodeGen/ARM/inlineasm-global.ll: Avoid specifing source file on llc.
It sometimes confuses FileCheck. Consider the case that path contains 'stmib'. :)
llvm-svn: 213932
| -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 d1a15e393a1..834624c28fa 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 -o - | FileCheck %s --check-prefix=THUMB -; RUN: llc -march arm -no-integrated-as %s -o - | FileCheck %s --check-prefix=ARM +; 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 ; In thumb mode, emit ".code 16" before global inline-asm instructions. |

