aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-01-28 00:05:10 +0000
committerChris Lattner <sabre@nondot.org>2010-01-28 00:05:10 +0000
commitbe9dfcef82c58063708e039bea3cf972ba41581b (patch)
treef44cecee958574835afeaa58ab307eec607b350d /include
parent953ebb769ada06d22f8ae4963651530b9cb84830 (diff)
downloadexternal_llvm-be9dfcef82c58063708e039bea3cf972ba41581b.zip
external_llvm-be9dfcef82c58063708e039bea3cf972ba41581b.tar.gz
external_llvm-be9dfcef82c58063708e039bea3cf972ba41581b.tar.bz2
rename printVisibility to EmitVisibility and make it private,
constify EmitLinkage. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94705 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/CodeGen/AsmPrinter.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/llvm/CodeGen/AsmPrinter.h b/include/llvm/CodeGen/AsmPrinter.h
index 52ac547..589788a 100644
--- a/include/llvm/CodeGen/AsmPrinter.h
+++ b/include/llvm/CodeGen/AsmPrinter.h
@@ -354,15 +354,15 @@ namespace llvm {
/// printKill - This method prints the specified kill machine instruction.
void printKill(const MachineInstr *MI) const;
- /// printVisibility - This prints visibility information about symbol, if
- /// this is suported by the target.
- void printVisibility(MCSymbol *Sym, unsigned Visibility) const;
-
/// printOffset - This is just convenient handler for printing offsets.
void printOffset(int64_t Offset) const;
private:
- void EmitLinkage(unsigned Linkage, MCSymbol *GVSym);
+ /// EmitVisibility - This emits visibility information about symbol, if
+ /// this is suported by the target.
+ void EmitVisibility(MCSymbol *Sym, unsigned Visibility) const;
+
+ void EmitLinkage(unsigned Linkage, MCSymbol *GVSym) const;
void EmitJumpTableEntry(const MachineJumpTableInfo *MJTI,
const MachineBasicBlock *MBB,