mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-26 21:32:10 +00:00
Somehow this important part of the patch, where I actually check the Mask,
got lost during my iterations of review. Thanks to Hal for spotting it! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@190604 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
9de16c1008
commit
25d25832d5
@ -169,7 +169,7 @@ public:
|
||||
std::string &Info) const {
|
||||
if (ComplexDeprecationInfo)
|
||||
return ComplexDeprecationInfo(MI, STI, Info);
|
||||
if (DeprecatedFeatureMask != 0) {
|
||||
if ((DeprecatedFeatureMask & STI.getFeatureBits()) != 0) {
|
||||
// FIXME: it would be nice to include the subtarget feature here.
|
||||
Info = "deprecated";
|
||||
return true;
|
||||
|
@ -1,5 +1,8 @@
|
||||
@ RUN: llvm-mc -triple armv8 -show-encoding < %s 2>&1 | FileCheck %s
|
||||
@ RUN: llvm-mc -triple armv8 -show-encoding < %s 2>&1 | FileCheck %s --check-prefix=CHECK-V8
|
||||
@ RUN: llvm-mc -triple armv7 -show-encoding < %s 2>&1 | FileCheck %s --check-prefix=CHECK-V7
|
||||
setend be
|
||||
@ CHECK: warning: deprecated
|
||||
@ CHECK-V8: warning: deprecated
|
||||
@ CHECK-V7-NOT: warning: deprecated
|
||||
mcr p8, #0, r5, c7, c5, #4
|
||||
@ CHECK: warning: deprecated on armv8
|
||||
@ CHECK-V8: warning: deprecated on armv8
|
||||
@ CHECK-V7-NOT: warning: deprecated on armv8
|
||||
|
Loading…
Reference in New Issue
Block a user