aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/MC
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
commitd9435d55a732f4af271c624c59df0d464079e763 (patch)
tree77dd9a4770ea1b9a3449869ef937398cb15309c5 /include/llvm/MC
parentc93f575f019fd283e415b86c75906e03eabae016 (diff)
downloadexternal_llvm-d9435d55a732f4af271c624c59df0d464079e763.zip
external_llvm-d9435d55a732f4af271c624c59df0d464079e763.tar.gz
external_llvm-d9435d55a732f4af271c624c59df0d464079e763.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')
-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.
//