[llvm] f7455da - [IndirectThunks] Tiny comment fix
Kristof Beyls via llvm-commits
llvm-commits at lists.llvm.org
Wed Jun 17 22:51:10 PDT 2020
Author: Kristof Beyls
Date: 2020-06-18T06:50:30+01:00
New Revision: f7455da2633d14f1ce76aaa7c73ea682ac51ac37
URL: https://github.com/llvm/llvm-project/commit/f7455da2633d14f1ce76aaa7c73ea682ac51ac37
DIFF: https://github.com/llvm/llvm-project/commit/f7455da2633d14f1ce76aaa7c73ea682ac51ac37.diff
LOG: [IndirectThunks] Tiny comment fix
Added:
Modified:
llvm/include/llvm/CodeGen/IndirectThunks.h
Removed:
################################################################################
diff --git a/llvm/include/llvm/CodeGen/IndirectThunks.h b/llvm/include/llvm/CodeGen/IndirectThunks.h
index 2e5d6b696349..810acc0bcf8b 100644
--- a/llvm/include/llvm/CodeGen/IndirectThunks.h
+++ b/llvm/include/llvm/CodeGen/IndirectThunks.h
@@ -65,9 +65,8 @@ void ThunkInserter<Derived>::createThunkFunction(MachineModuleInfo &MMI,
Builder.CreateRetVoid();
- // MachineFunctions/MachineBasicBlocks aren't created automatically for the
- // IR-level constructs we already made. Create them and insert them into the
- // module.
+ // MachineFunctions aren't created automatically for the IR-level constructs
+ // we already made. Create them and insert them into the module.
MachineFunction &MF = MMI.getOrCreateMachineFunction(*F);
// A MachineBasicBlock must not be created for the Entry block; code
// generation from an empty naked function in C source code also does not
More information about the llvm-commits
mailing list