aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/MC/MCAssembler.h
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2010-06-16 20:04:29 +0000
committerDaniel Dunbar <daniel@zuster.org>2010-06-16 20:04:29 +0000
commit843aa1f15b06fc3c2b39740ffb5bffd2fa6827ce (patch)
tree77dd9a4770ea1b9a3449869ef937398cb15309c5 /include/llvm/MC/MCAssembler.h
parent83b467178a8295048f3ee7b44ff9c7ea244a96cc (diff)
downloadexternal_llvm-843aa1f15b06fc3c2b39740ffb5bffd2fa6827ce.zip
external_llvm-843aa1f15b06fc3c2b39740ffb5bffd2fa6827ce.tar.gz
external_llvm-843aa1f15b06fc3c2b39740ffb5bffd2fa6827ce.tar.bz2
MC: Simplify MCAssembler::isSymbolLinkerVisible to only take an MCSymbol.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@106142 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/MC/MCAssembler.h')
-rw-r--r--include/llvm/MC/MCAssembler.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/MC/MCAssembler.h b/include/llvm/MC/MCAssembler.h
index d9963ec..6ee1fe0 100644
--- a/include/llvm/MC/MCAssembler.h
+++ b/include/llvm/MC/MCAssembler.h
@@ -641,7 +641,7 @@ public:
/// in the symbol table, or whether it can be discarded by the assembler. This
/// also effects whether the assembler treats the label as potentially
/// defining a separate atom.
- bool isSymbolLinkerVisible(const MCSymbolData *SD) const;
+ bool isSymbolLinkerVisible(const MCSymbol &SD) const;
/// Emit the section contents using the given object writer.
//