diff options
| author | Philip Reames <preames@rivosinc.com> | 2025-09-23 08:07:37 -0700 |
|---|---|---|
| committer | Philip Reames <listmail@philipreames.com> | 2025-09-23 11:58:37 -0700 |
| commit | 8b7a76a2ace31bbd27909c1ff99b18f888d40408 (patch) | |
| tree | c7e93d01b686aa487907e553a4593d304a05f70d /llvm/lib/CodeGen/TargetInstrInfo.cpp | |
| parent | ca2e8fc928ad103f46ca9f827e147c43db3a5c47 (diff) | |
[CodeGen] Rename isReallyTriviallyReMaterializable [nfc]
.. to isReMaterializableImpl. The "Really" naming has always been
awkward, and we're working towards removing the "Trivial" part now,
so go ehead and remove both pieces in a single rename.
Note that this doesn't change any aspect of the current
implementation; we still "mostly" only return instructions which
are trivial (meaning no virtual register uses), but some targets
do lie about that today.
Diffstat (limited to 'llvm/lib/CodeGen/TargetInstrInfo.cpp')
| -rw-r--r-- | llvm/lib/CodeGen/TargetInstrInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/TargetInstrInfo.cpp b/llvm/lib/CodeGen/TargetInstrInfo.cpp index 5be89b49fb6b..2f3b7a2c8fcd 100644 --- a/llvm/lib/CodeGen/TargetInstrInfo.cpp +++ b/llvm/lib/CodeGen/TargetInstrInfo.cpp @@ -1590,7 +1590,7 @@ MachineTraceStrategy TargetInstrInfo::getMachineCombinerTraceStrategy() const { return MachineTraceStrategy::TS_MinInstrCount; } -bool TargetInstrInfo::isReallyTriviallyReMaterializable( +bool TargetInstrInfo::isReMaterializableImpl( const MachineInstr &MI) const { const MachineFunction &MF = *MI.getMF(); const MachineRegisterInfo &MRI = MF.getRegInfo(); |
