summaryrefslogtreecommitdiffstats
path: root/llvm/test
diff options
context:
space:
mode:
authorHal Finkel <hfinkel@anl.gov>2013-09-12 14:40:06 +0000
committerHal Finkel <hfinkel@anl.gov>2013-09-12 14:40:06 +0000
commit0096dbd50df50a08d729e1219f78d43f3e1583b3 (patch)
treef368003d7f5d2335515629e81c0f1cbde4ecdec8 /llvm/test
parent904d8806ce51d6d3493082ea5eb9d411a2a9c2fb (diff)
downloadbcm5719-llvm-0096dbd50df50a08d729e1219f78d43f3e1583b3.tar.gz
bcm5719-llvm-0096dbd50df50a08d729e1219f78d43f3e1583b3.zip
Mark PPC MFTB and DST (and friends) as deprecated
Use the new instruction deprecation feature to mark mftb (now replaced with mfspr) and dst (along with the other Altivec cache control instructions) as deprecated when targeting cores supporting at least ISA v2.03. llvm-svn: 190605
Diffstat (limited to 'llvm/test')
-rw-r--r--llvm/test/MC/PowerPC/deprecated-p7.s12
1 files changed, 12 insertions, 0 deletions
diff --git a/llvm/test/MC/PowerPC/deprecated-p7.s b/llvm/test/MC/PowerPC/deprecated-p7.s
new file mode 100644
index 00000000000..ded99235600
--- /dev/null
+++ b/llvm/test/MC/PowerPC/deprecated-p7.s
@@ -0,0 +1,12 @@
+# RUN: llvm-mc -triple powerpc64-unknown-linux-gnu -mcpu=pwr7 -show-encoding < %s 2>&1 | FileCheck %s
+# RUN: llvm-mc -triple powerpc-unknown-linux-gnu -mcpu=601 -show-encoding < %s 2>&1 | FileCheck -check-prefix=CHECK-OLD %s
+
+ mftb 3
+# CHECK: warning: deprecated
+# CHECK: mftb 3
+
+# CHECK-OLD-NOT: warning: deprecated
+# CHECK-OLD: mftb 3
+
+# FIXME: Test dst and friends once we can parse them.
+
OpenPOWER on IntegriCloud