commit | 5266ad9bec7ce11498edef67a4d2942366332f37 | [log] [tgz] |
---|---|---|
author | Duncan P. N. Exon Smith <dexonsmith@apple.com> | Wed May 20 15:10:03 2015 +0000 |
committer | Duncan P. N. Exon Smith <dexonsmith@apple.com> | Wed May 20 15:10:03 2015 +0000 |
tree | c2227facddeb65da6c58f7b2ae44ce98225e4a9b | |
parent | e8048f0d90e9fcdc37e189bf3a59872763411853 [diff] [blame] |
MC: Use MCSymbol in MCObjectWriter::isWeak(), NFC Continue to prefer `MCSymbol` when we need both. llvm-svn: 237798
diff --git a/llvm/lib/MC/MCObjectWriter.cpp b/llvm/lib/MC/MCObjectWriter.cpp index 6402a2f..7a9fd49 100644 --- a/llvm/lib/MC/MCObjectWriter.cpp +++ b/llvm/lib/MC/MCObjectWriter.cpp
@@ -48,4 +48,4 @@ return &SecA == &SecB; } -bool MCObjectWriter::isWeak(const MCSymbolData &SD) const { return false; } +bool MCObjectWriter::isWeak(const MCSymbol &) const { return false; }