summaryrefslogtreecommitdiff
path: root/test/CodeGen/SPARC
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-02-04 06:34:01 +0000
committerChris Lattner <sabre@nondot.org>2010-02-04 06:34:01 +0000
commit87c06d617917f4a388fbe9db81198e13cde3e431 (patch)
tree637a470874aa412a1a50c9f7d99c19270d924802 /test/CodeGen/SPARC
parent463330684406c9d2fe2e9d7078c54b9d9f06dd52 (diff)
downloadllvm-87c06d617917f4a388fbe9db81198e13cde3e431.tar.gz
llvm-87c06d617917f4a388fbe9db81198e13cde3e431.tar.bz2
llvm-87c06d617917f4a388fbe9db81198e13cde3e431.tar.xz
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.ll6
1 files changed, 2 insertions, 4 deletions
diff --git a/test/CodeGen/SPARC/ctpop.ll b/test/CodeGen/SPARC/ctpop.ll
index 37d1c5a570..e56f4947b5 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)