diff options
author | Chris Lattner <sabre@nondot.org> | 2010-02-08 23:10:08 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-02-08 23:10:08 +0000 |
commit | 951755445821b92c3dc38f32b5c36e9875fa4318 (patch) | |
tree | 372fb5dc2545816063b39262f33b9fc83ad79323 /include | |
parent | 3484110c67d88f5ead0f0795b880056174f66811 (diff) | |
download | external_llvm-951755445821b92c3dc38f32b5c36e9875fa4318.zip external_llvm-951755445821b92c3dc38f32b5c36e9875fa4318.tar.gz external_llvm-951755445821b92c3dc38f32b5c36e9875fa4318.tar.bz2 |
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')
-rw-r--r-- | include/llvm/CodeGen/AsmPrinter.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/include/llvm/CodeGen/AsmPrinter.h b/include/llvm/CodeGen/AsmPrinter.h index 55b3082..382fe71 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 |