summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/X86/X86AsmPrinter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/lib/Target/X86/X86AsmPrinter.cpp')
-rw-r--r--llvm/lib/Target/X86/X86AsmPrinter.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/llvm/lib/Target/X86/X86AsmPrinter.cpp b/llvm/lib/Target/X86/X86AsmPrinter.cpp
index 2c41663d9d5..f12ba51f1f3 100644
--- a/llvm/lib/Target/X86/X86AsmPrinter.cpp
+++ b/llvm/lib/Target/X86/X86AsmPrinter.cpp
@@ -206,18 +206,6 @@ bool X86SharedAsmPrinter::doFinalization(Module &M) {
return false; // success
}
-void X86SharedAsmPrinter::printBasicBlockLabel(const MachineBasicBlock *MBB,
- bool printColon,
- bool printComment) const {
- O << PrivateGlobalPrefix << "BB"
- << Mang->getValueName(MBB->getParent()->getFunction()) << "_"
- << MBB->getNumber();
- if (printColon)
- O << ':';
- if (printComment)
- O << '\t' << CommentString << MBB->getBasicBlock()->getName();
-}
-
/// createX86CodePrinterPass - Returns a pass that prints the X86 assembly code
/// for a MachineFunction to the given output stream, using the given target
/// machine description.
OpenPOWER on IntegriCloud