Skip to content

Commit

Permalink
[AArch64] Removing redundant PAuth flag
Browse files Browse the repository at this point in the history
This removes `HasPAUTH` from `AArch64SubTarget`, as it seems to be a
redundant, unused copy of `HasPAuth`.

Differential Revision: https://reviews.llvm.org/D117782
  • Loading branch information
tyb-arm committed Jan 31, 2022
1 parent 5aa08bf commit e21f90d
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions llvm/lib/Target/AArch64/AArch64Subtarget.h
Expand Up @@ -218,7 +218,6 @@ class AArch64Subtarget final : public AArch64GenSubtargetInfo {
bool HasETE = false;
bool HasTRBE = false;
bool HasBRBE = false;
bool HasPAUTH = false;
bool HasSPE_EEF = false;

// HasZeroCycleRegMove - Has zero-cycle register mov instructions.
Expand Down Expand Up @@ -511,7 +510,6 @@ class AArch64Subtarget final : public AArch64GenSubtargetInfo {
bool hasRandGen() const { return HasRandGen; }
bool hasMTE() const { return HasMTE; }
bool hasTME() const { return HasTME; }
bool hasPAUTH() const { return HasPAUTH; }
// Arm SVE2 extensions
bool hasSVE2AES() const { return HasSVE2AES; }
bool hasSVE2SM4() const { return HasSVE2SM4; }
Expand Down

0 comments on commit e21f90d

Please sign in to comment.