MC: Use MCSymbol in LocalCommon, NFC

Switch from MCSymbolData to MCSymbol in LocalCommon.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@237816 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Duncan P. N. Exon Smith
2015-05-20 18:25:40 +00:00
parent 12f6308247
commit 80b2cb6d4d
2 changed files with 4 additions and 5 deletions

View File

@@ -101,7 +101,7 @@ private:
bool SeenIdent;
struct LocalCommon {
MCSymbolData *SD;
const MCSymbol *Symbol;
uint64_t Size;
unsigned ByteAlignment;
};