diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2016-03-03 22:38:39 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2016-03-03 22:38:39 +0000 |
commit | f2b521ffc5498f271b83f2b74da9faa440008d63 (patch) | |
tree | cba8e1bd65c12eb6ae2f0280b843c313ce1208f0 | |
parent | e483ed282597e04342fb7e18afd63d8647822921 (diff) | |
download | bcm5719-llvm-f2b521ffc5498f271b83f2b74da9faa440008d63.tar.gz bcm5719-llvm-f2b521ffc5498f271b83f2b74da9faa440008d63.zip |
llvm/test/CodeGen/ARM/rem_crash.ll: Avoid unsupported targets to specify explicit triple.
We will see it for targeting win32;
LLVM ERROR: CPU: 'generic' does not support ARM mode execution!
llvm-svn: 262668
-rw-r--r-- | llvm/test/CodeGen/ARM/rem_crash.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/ARM/rem_crash.ll b/llvm/test/CodeGen/ARM/rem_crash.ll index 65c18fae1fd..bce597c030d 100644 --- a/llvm/test/CodeGen/ARM/rem_crash.ll +++ b/llvm/test/CodeGen/ARM/rem_crash.ll @@ -1,4 +1,4 @@ -; RUN: llc < %s -march=arm +; RUN: llc < %s -mtriple=arm-unknown-unknown define i8 @test_minsize_uu8(i8 %x) minsize optsize { entry: |