diff options
author | Mircea Trofin <mtrofin@google.com> | 2021-12-08 20:35:33 -0800 |
---|---|---|
committer | Mircea Trofin <mtrofin@google.com> | 2021-12-08 20:36:13 -0800 |
commit | b012742405cb0cdfed3d5ab4774d7d961c380b1a (patch) | |
tree | bda8863e0f6dfc9b4018ef1e157b9a449a9eddc3 /llvm/lib/CodeGen/MachineFunction.cpp | |
parent | c23ebf17140cc4fd42117f3bfb8cb045279d0c4d (diff) | |
download | llvm-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.cpp | 3 |
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, |