diff options
author | Chris Lattner <sabre@nondot.org> | 2010-02-04 06:34:01 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-02-04 06:34:01 +0000 |
commit | 87c06d617917f4a388fbe9db81198e13cde3e431 (patch) | |
tree | 637a470874aa412a1a50c9f7d99c19270d924802 /test/CodeGen/SPARC | |
parent | 463330684406c9d2fe2e9d7078c54b9d9f06dd52 (diff) | |
download | external_llvm-87c06d617917f4a388fbe9db81198e13cde3e431.zip external_llvm-87c06d617917f4a388fbe9db81198e13cde3e431.tar.gz external_llvm-87c06d617917f4a388fbe9db81198e13cde3e431.tar.bz2 |
add support for the sparcv9-*-* target triple to turn on
64-bit sparc codegen. Patch by Nathan Keynes!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95293 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/SPARC')
-rw-r--r-- | test/CodeGen/SPARC/ctpop.ll | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/test/CodeGen/SPARC/ctpop.ll b/test/CodeGen/SPARC/ctpop.ll index 37d1c5a..e56f494 100644 --- a/test/CodeGen/SPARC/ctpop.ll +++ b/test/CodeGen/SPARC/ctpop.ll @@ -1,7 +1,5 @@ -; RUN: llc < %s -march=sparc -mattr=v9 -enable-sparc-v9-insts -; RUN: llc < %s -march=sparc -mattr=-v9 | \ -; RUN: not grep popc -; RUN: llc < %s -march=sparc -mattr=v9 -enable-sparc-v9-insts | grep popc +; RUN: llc < %s -march=sparc -mattr=-v9 | not grep popc +; RUN: llc < %s -march=sparcv9 -mattr=v9 | grep popc declare i32 @llvm.ctpop.i32(i32) |