mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-03 14:08:57 +00:00
c0b12dfd0a
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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@190605 91177308-0d34-0410-b5e6-96231b3b80d8
13 lines
401 B
ArmAsm
13 lines
401 B
ArmAsm
# 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.
|
|
|