diff options
author | Matt Arsenault <Matthew.Arsenault@amd.com> | 2025-09-09 20:13:52 +0900 |
---|---|---|
committer | Matt Arsenault <arsenm2@gmail.com> | 2025-09-20 08:50:38 +0900 |
commit | 9d6a7e1dbf85eecadc522c341e9959122f46b2d3 (patch) | |
tree | bed185ccde897e46fbcf253c0b15970e345bdd4c /llvm/tools | |
parent | 669b2f8a1951b6b9581c55f8bf539b8d84343b5f (diff) | |
download | llvm-users/arsenm/codegen/remove-PointerLikeRegClass.zip llvm-users/arsenm/codegen/remove-PointerLikeRegClass.tar.gz llvm-users/arsenm/codegen/remove-PointerLikeRegClass.tar.bz2 |
CodeGen: Remove PointerLikeRegClass handling from codegenusers/arsenm/codegen/remove-PointerLikeRegClass
All uses have been migrated to RegClassByHwMode. This is now
an implementation detail of InstrInfoEmitter for pseudoinstructions.
Diffstat (limited to 'llvm/tools')
-rw-r--r-- | llvm/tools/llvm-exegesis/lib/MCInstrDescView.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-exegesis/lib/MCInstrDescView.cpp b/llvm/tools/llvm-exegesis/lib/MCInstrDescView.cpp index 66c770d..30c9efe 100644 --- a/llvm/tools/llvm-exegesis/lib/MCInstrDescView.cpp +++ b/llvm/tools/llvm-exegesis/lib/MCInstrDescView.cpp @@ -120,7 +120,7 @@ Instruction::create(const MCInstrInfo &InstrInfo, Operand.IsDef = (OpIndex < Description->getNumDefs()); Operand.IsEarlyClobber = (Description->getOperandConstraint(OpIndex, MCOI::EARLY_CLOBBER) != -1); - // TODO(gchatelet): Handle isLookupPtrRegClass. + // TODO(gchatelet): Handle LookupRegClassByHwMode. if (OpInfo.RegClass >= 0) Operand.Tracker = &RATC.getRegisterClass(OpInfo.RegClass); int TiedToIndex = Description->getOperandConstraint(OpIndex, MCOI::TIED_TO); |