MC: Make MCSymbolData::Symbol private

Make the back-pointer from `MCSymbolData` to `MCSymbol` private,
preparing to remove the back pointer entirely.  I've already updated all
the users, although for now it's still used to indicate whether
`MCSymbol::Data` has been initialized.

llvm-svn: 237868
This commit is contained in:
Duncan P. N. Exon Smith 2015-05-21 00:49:09 +00:00
parent 24f4775f71
commit 91e7a18e57
1 changed files with 0 additions and 2 deletions

View File

@ -71,8 +71,6 @@ public:
/// @{
bool isInitialized() const { return Symbol; }
const MCSymbol &getSymbol() const { return *Symbol; }
MCFragment *getFragment() const { return Fragment.getPointer(); }
void setFragment(MCFragment *Value) { Fragment.setPointer(Value); }