mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-11 21:56:15 +00:00
CurrentFnName is now dead, remove it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@93612 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ef4e536c7e
commit
412c3a5bc9
@ -131,10 +131,9 @@ namespace llvm {
|
||||
///
|
||||
Mangler *Mang;
|
||||
|
||||
/// Cache of mangled name for current function. This is recalculated at the
|
||||
/// The symbol for the current function. This is recalculated at the
|
||||
/// beginning of each call to runOnMachineFunction().
|
||||
///
|
||||
std::string CurrentFnName; // FIXME: REMOVE.
|
||||
const MCSymbol *CurrentFnSym;
|
||||
|
||||
/// getCurrentSection() - Return the current section we are emitting to.
|
||||
|
@ -231,8 +231,7 @@ bool AsmPrinter::doFinalization(Module &M) {
|
||||
}
|
||||
|
||||
void AsmPrinter::SetupMachineFunction(MachineFunction &MF) {
|
||||
// What's my mangled name?
|
||||
CurrentFnName = Mang->getMangledName(MF.getFunction());
|
||||
// Get the function symbol.
|
||||
CurrentFnSym = GetGlobalValueSymbol(MF.getFunction());
|
||||
IncrementFunctionNumber();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user