commit | 70a54c07a0807bf89d1a8b4414e53298c376eb61 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Sun Sep 13 18:25:37 2009 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Sun Sep 13 18:25:37 2009 +0000 |
tree | 60f51fb27e18daf80678cda1acb6b8becba00a06 | |
parent | 4afcedfad11555e2c755a31eb04c0e5bdbb2a4a1 [diff] [blame] |
replace printBasicBlockLabel with EmitBasicBlockStart, now that printBasicBlockLabel is only used for starting a MBB. This allows elimination of a bunch of arguments. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81684 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/Mips/AsmPrinter/MipsAsmPrinter.cpp b/lib/Target/Mips/AsmPrinter/MipsAsmPrinter.cpp index 4c7798d..f4a9b36 100644 --- a/lib/Target/Mips/AsmPrinter/MipsAsmPrinter.cpp +++ b/lib/Target/Mips/AsmPrinter/MipsAsmPrinter.cpp
@@ -270,7 +270,7 @@ // Print a label for the basic block. if (I != MF.begin()) { - printBasicBlockLabel(I, true, true); + EmitBasicBlockStart(I); O << '\n'; }