diff options
author | Kazu Hirata <kazu@google.com> | 2025-05-02 10:34:25 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-05-02 10:34:25 -0700 |
commit | aa613777af4a2f2d5103e5e67da96f41ca2bb19e (patch) | |
tree | a5b45894119d2588a0165102600cb2ce0454fcc1 /llvm/lib/CodeGen/PeepholeOptimizer.cpp | |
parent | 173ec728d287f989053bd77521b3497b069c98a2 (diff) | |
download | llvm-aa613777af4a2f2d5103e5e67da96f41ca2bb19e.zip llvm-aa613777af4a2f2d5103e5e67da96f41ca2bb19e.tar.gz llvm-aa613777af4a2f2d5103e5e67da96f41ca2bb19e.tar.bz2 |
[llvm] Remove redundant control flow (NFC) (#138304)
Diffstat (limited to 'llvm/lib/CodeGen/PeepholeOptimizer.cpp')
-rw-r--r-- | llvm/lib/CodeGen/PeepholeOptimizer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/PeepholeOptimizer.cpp b/llvm/lib/CodeGen/PeepholeOptimizer.cpp index 6f44837..27b22e6 100644 --- a/llvm/lib/CodeGen/PeepholeOptimizer.cpp +++ b/llvm/lib/CodeGen/PeepholeOptimizer.cpp @@ -521,7 +521,7 @@ private: DenseMap<RegSubRegPair, MachineInstr *> CopySrcMIs; // MachineFunction::Delegate implementation. Used to maintain CopySrcMIs. - void MF_HandleInsertion(MachineInstr &MI) override { return; } + void MF_HandleInsertion(MachineInstr &MI) override {} bool getCopySrc(MachineInstr &MI, RegSubRegPair &SrcPair) { if (!MI.isCopy()) |