summaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/AsmPrinter.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-02-08 23:10:08 +0000
committerChris Lattner <sabre@nondot.org>2010-02-08 23:10:08 +0000
commit951755445821b92c3dc38f32b5c36e9875fa4318 (patch)
tree372fb5dc2545816063b39262f33b9fc83ad79323 /include/llvm/CodeGen/AsmPrinter.h
parent3484110c67d88f5ead0f0795b880056174f66811 (diff)
downloadllvm-951755445821b92c3dc38f32b5c36e9875fa4318.tar.gz
llvm-951755445821b92c3dc38f32b5c36e9875fa4318.tar.bz2
llvm-951755445821b92c3dc38f32b5c36e9875fa4318.tar.xz
now that @GOTOFF is no longer represented as a suffix on a
MCSymbol, we can remove the 'suffix' argument of GetBlockAddressSymbol. Do so. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95601 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/AsmPrinter.h')
-rw-r--r--include/llvm/CodeGen/AsmPrinter.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/include/llvm/CodeGen/AsmPrinter.h b/include/llvm/CodeGen/AsmPrinter.h
index 55b3082d0d..382fe7159d 100644
--- a/include/llvm/CodeGen/AsmPrinter.h
+++ b/include/llvm/CodeGen/AsmPrinter.h
@@ -343,11 +343,9 @@ namespace llvm {
/// GetBlockAddressSymbol - Return the MCSymbol used to satisfy BlockAddress
/// uses of the specified basic block.
- MCSymbol *GetBlockAddressSymbol(const BlockAddress *BA,
- const char *Suffix = "") const;
+ MCSymbol *GetBlockAddressSymbol(const BlockAddress *BA) const;
MCSymbol *GetBlockAddressSymbol(const Function *F,
- const BasicBlock *BB,
- const char *Suffix = "") const;
+ const BasicBlock *BB) const;
/// EmitBasicBlockStart - This method prints the label for the specified
/// MachineBasicBlock, an alignment (if present) and a comment describing