diff options
| author | Louis Gerbarg <lgg@apple.com> | 2014-05-12 22:13:07 +0000 |
|---|---|---|
| committer | Louis Gerbarg <lgg@apple.com> | 2014-05-12 22:13:07 +0000 |
| commit | b4013235e35523ffda7267ddd768558d426d0b7b (patch) | |
| tree | abfc28180de4b905ebf9b27db2ee4441db646d07 | |
| parent | 7a59e0845fcfa6c0f50e4a35f156089f5171d76e (diff) | |
| download | bcm5719-llvm-b4013235e35523ffda7267ddd768558d426d0b7b.tar.gz bcm5719-llvm-b4013235e35523ffda7267ddd768558d426d0b7b.zip | |
Fix ARM bswap16.ll test on Windows
Windows on ARM only supports thumb mode execution, so we have to
explicitly pick some non-Windows OS to test ARM mode codegen.
llvm-svn: 208638
| -rw-r--r-- | llvm/test/CodeGen/ARM/bswap16.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/ARM/bswap16.ll b/llvm/test/CodeGen/ARM/bswap16.ll index 29cec4f1121..70c62d294ee 100644 --- a/llvm/test/CodeGen/ARM/bswap16.ll +++ b/llvm/test/CodeGen/ARM/bswap16.ll @@ -1,5 +1,5 @@ -; RUN: llc -march=arm -mattr=v6 < %s | FileCheck %s -; RUN: llc -march=thumb -mattr=v6 < %s | FileCheck %s +; RUN: llc -mtriple=arm-darwin -mattr=v6 < %s | FileCheck %s +; RUN: llc -mtriple=thumb-darwin -mattr=v6 < %s | FileCheck %s define void @test1(i16* nocapture %data) { |

