aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/MachineFunction.cpp
diff options
context:
space:
mode:
authorMircea Trofin <mtrofin@google.com>2021-12-08 20:35:33 -0800
committerMircea Trofin <mtrofin@google.com>2021-12-08 20:36:13 -0800
commitb012742405cb0cdfed3d5ab4774d7d961c380b1a (patch)
treebda8863e0f6dfc9b4018ef1e157b9a449a9eddc3 /llvm/lib/CodeGen/MachineFunction.cpp
parentc23ebf17140cc4fd42117f3bfb8cb045279d0c4d (diff)
downloadllvm-b012742405cb0cdfed3d5ab4774d7d961c380b1a.zip
llvm-b012742405cb0cdfed3d5ab4774d7d961c380b1a.tar.gz
llvm-b012742405cb0cdfed3d5ab4774d7d961c380b1a.tar.bz2
[NFC] Rename MachineFunction::deleteMachineInstr (coding style)
Diffstat (limited to 'llvm/lib/CodeGen/MachineFunction.cpp')
-rw-r--r--llvm/lib/CodeGen/MachineFunction.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/MachineFunction.cpp b/llvm/lib/CodeGen/MachineFunction.cpp
index 28bef00..c534506 100644
--- a/llvm/lib/CodeGen/MachineFunction.cpp
+++ b/llvm/lib/CodeGen/MachineFunction.cpp
@@ -393,8 +393,7 @@ MachineInstr &MachineFunction::CloneMachineInstrBundle(MachineBasicBlock &MBB,
///
/// This function also serves as the MachineInstr destructor - the real
/// ~MachineInstr() destructor must be empty.
-void
-MachineFunction::DeleteMachineInstr(MachineInstr *MI) {
+void MachineFunction::deleteMachineInstr(MachineInstr *MI) {
// Verify that a call site info is at valid state. This assertion should
// be triggered during the implementation of support for the
// call site info of a new architecture. If the assertion is triggered,