From f7455da2633d14f1ce76aaa7c73ea682ac51ac37 Mon Sep 17 00:00:00 2001 From: Kristof Beyls Date: Thu, 18 Jun 2020 06:50:30 +0100 Subject: [PATCH] [IndirectThunks] Tiny comment fix --- llvm/include/llvm/CodeGen/IndirectThunks.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/llvm/include/llvm/CodeGen/IndirectThunks.h b/llvm/include/llvm/CodeGen/IndirectThunks.h index 2e5d6b6..810acc0 100644 --- a/llvm/include/llvm/CodeGen/IndirectThunks.h +++ b/llvm/include/llvm/CodeGen/IndirectThunks.h @@ -65,9 +65,8 @@ void ThunkInserter::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 -- 2.7.4