diff options
author | Chris Lattner <sabre@nondot.org> | 2010-03-30 18:10:53 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-03-30 18:10:53 +0000 |
commit | 9897043928aebe05b3e56e7860eda862db767727 (patch) | |
tree | b4c9fbef021920ef6b0f4511c88334a8014c1b78 /llvm/lib/CodeGen/MachineBasicBlock.cpp | |
parent | 85eea4e031ef69edcfe903bbd756f89f7d923556 (diff) | |
download | bcm5719-llvm-9897043928aebe05b3e56e7860eda862db767727.tar.gz bcm5719-llvm-9897043928aebe05b3e56e7860eda862db767727.zip |
Rip out the 'is temporary' nonsense from the MCContext interface to
create symbols. It is extremely error prone and a source of a lot
of the remaining integrated assembler bugs on x86-64.
This fixes rdar://7807601.
llvm-svn: 99902
Diffstat (limited to 'llvm/lib/CodeGen/MachineBasicBlock.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineBasicBlock.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/MachineBasicBlock.cpp b/llvm/lib/CodeGen/MachineBasicBlock.cpp index fc8ae5f705d..fbe4fc2f46f 100644 --- a/llvm/lib/CodeGen/MachineBasicBlock.cpp +++ b/llvm/lib/CodeGen/MachineBasicBlock.cpp @@ -45,9 +45,9 @@ MCSymbol *MachineBasicBlock::getSymbol() const { const MachineFunction *MF = getParent(); MCContext &Ctx = MF->getContext(); const char *Prefix = Ctx.getAsmInfo().getPrivateGlobalPrefix(); - return Ctx.GetOrCreateTemporarySymbol(Twine(Prefix) + "BB" + - Twine(MF->getFunctionNumber()) + "_" + - Twine(getNumber())); + return Ctx.GetOrCreateSymbol(Twine(Prefix) + "BB" + + Twine(MF->getFunctionNumber()) + "_" + + Twine(getNumber())); } |