Put class into an anonymous namespace.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@118294 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Benjamin Kramer 2010-11-05 19:56:38 +00:00
parent 080c092297
commit f79856986d

View File

@ -212,6 +212,7 @@ void MCELFStreamer::EmitAssignment(MCSymbol *Symbol, const MCExpr *Value) {
// that equals the original symbol (tmp = bar). With this hack the writer // that equals the original symbol (tmp = bar). With this hack the writer
// gets a relocation with tmp and can correctly implement weak references. // gets a relocation with tmp and can correctly implement weak references.
namespace {
class WeakRefExpr : public MCTargetExpr { class WeakRefExpr : public MCTargetExpr {
private: private:
const MCSymbolRefExpr *Alias; const MCSymbolRefExpr *Alias;
@ -235,6 +236,7 @@ public:
return new (Ctx) WeakRefExpr(A); return new (Ctx) WeakRefExpr(A);
} }
}; };
} // end anonymous namespace
void MCELFStreamer::EmitWeakReference(MCSymbol *Alias, const MCSymbol *Symbol) { void MCELFStreamer::EmitWeakReference(MCSymbol *Alias, const MCSymbol *Symbol) {
getAssembler().getOrCreateSymbolData(*Symbol); getAssembler().getOrCreateSymbolData(*Symbol);