File tree Expand file tree Collapse file tree 2 files changed +3
-6
lines changed
llvm/include/llvm/CodeGen Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -135,7 +135,8 @@ class LLVM_ABI AsmPrinter : public MachineFunctionPass {
135
135
// / default, this is equal to CurrentFnSym.
136
136
MCSymbol *CurrentFnSymForSize = nullptr ;
137
137
138
- // / Vector of symbols marking the position of callsites in each basic block.
138
+ // / Vector of symbols marking the position of callsites in the current
139
+ // / function, keyed by their containing basic block.
139
140
// / The callsite symbols of each block are stored in the order they appear
140
141
// / in that block.
141
142
DenseMap<const MachineBasicBlock *, SmallVector<MCSymbol *, 1 >>
@@ -301,7 +302,7 @@ class LLVM_ABI AsmPrinter : public MachineFunctionPass {
301
302
// / to emit them as well, return the whole set.
302
303
ArrayRef<MCSymbol *> getAddrLabelSymbolToEmit (const BasicBlock *BB);
303
304
304
- // / Creates a new symbol to be used for the beginning of a callsite at th
305
+ // / Creates a new symbol to be used for the beginning of a callsite at the
305
306
// / specified basic block.
306
307
MCSymbol *createCallsiteSymbol (const MachineBasicBlock &MBB);
307
308
Original file line number Diff line number Diff line change @@ -725,10 +725,6 @@ class MachineBasicBlock
725
725
// / Returns the MCSymbol marking the end of this basic block.
726
726
LLVM_ABI MCSymbol *getEndSymbol () const ;
727
727
728
- // / Returns a temporary MCSymbol marking the beginning of a callsite, and
729
- // / appends it to `CallsiteSymbols`.
730
- MCSymbol *createCallsiteSymbol () const ;
731
-
732
728
// / Returns true if this block may have an INLINEASM_BR (overestimate, by
733
729
// / checking if any of the successors are indirect targets of any inlineasm_br
734
730
// / in the function).
You can’t perform that action at this time.
0 commit comments