diff options
author | Daniil Kovalev <dkovalev@accesssoftek.com> | 2024-06-27 11:10:38 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-27 11:10:38 +0300 |
commit | 99251f5a11a34c415079afcba11f52ec6469fe60 (patch) | |
tree | 1e4caf49bea3aafef8bba2007204d806f7ab6043 /llvm/lib/CodeGen/MachineVerifier.cpp | |
parent | 223a2102fe312f442f9b55a8bafa909e03b0f4ed (diff) | |
download | llvm-99251f5a11a34c415079afcba11f52ec6469fe60.zip llvm-99251f5a11a34c415079afcba11f52ec6469fe60.tar.gz llvm-99251f5a11a34c415079afcba11f52ec6469fe60.tar.bz2 |
Revert "[PAC][AArch64] Lower ptrauth constants in code (#94241)" (#96865)
This reverts #94241.
See buildbot failure
https://lab.llvm.org/buildbot/#/builders/51/builds/570
Diffstat (limited to 'llvm/lib/CodeGen/MachineVerifier.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineVerifier.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/llvm/lib/CodeGen/MachineVerifier.cpp b/llvm/lib/CodeGen/MachineVerifier.cpp index 0c8a0f2..9ea238c 100644 --- a/llvm/lib/CodeGen/MachineVerifier.cpp +++ b/llvm/lib/CodeGen/MachineVerifier.cpp @@ -2066,12 +2066,6 @@ void MachineVerifier::verifyPreISelGenericInstruction(const MachineInstr *MI) { report("Dst operand 0 must be a pointer", MI); break; } - case TargetOpcode::G_PTRAUTH_GLOBAL_VALUE: { - const MachineOperand &AddrOp = MI->getOperand(1); - if (!AddrOp.isReg() || !MRI->getType(AddrOp.getReg()).isPointer()) - report("addr operand must be a pointer", &AddrOp, 1); - break; - } default: break; } |