diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2018-03-09 18:42:25 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2018-03-09 18:42:25 +0000 |
commit | 47b4d6ba196d09900284caff7ed372b3878f28ef (patch) | |
tree | df9dca690710ef6908ad52eba2cc20f94afba41f /llvm/lib/MC/MCStreamer.cpp | |
parent | 2cd489feb2b99d1a24aab4c8971ae528e0b77d78 (diff) | |
download | llvm-47b4d6ba196d09900284caff7ed372b3878f28ef.zip llvm-47b4d6ba196d09900284caff7ed372b3878f28ef.tar.gz llvm-47b4d6ba196d09900284caff7ed372b3878f28ef.tar.bz2 |
Delay creating an alias for @@@.
With this we only create an alias for @@@ once we know if it should
use @ or @@. This avoids last minutes renames and hacks to handle MS
names.
This only handles the ELF writer. LTO still has issues with @@@
aliases.
llvm-svn: 327160
Diffstat (limited to 'llvm/lib/MC/MCStreamer.cpp')
-rw-r--r-- | llvm/lib/MC/MCStreamer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/MC/MCStreamer.cpp b/llvm/lib/MC/MCStreamer.cpp index bf27a0a..7d847c6 100644 --- a/llvm/lib/MC/MCStreamer.cpp +++ b/llvm/lib/MC/MCStreamer.cpp @@ -929,7 +929,7 @@ void MCStreamer::EmitCOFFSymbolType(int Type) { llvm_unreachable("this directive only supported on COFF targets"); } void MCStreamer::emitELFSize(MCSymbol *Symbol, const MCExpr *Value) {} -void MCStreamer::emitELFSymverDirective(MCSymbol *Alias, +void MCStreamer::emitELFSymverDirective(StringRef AliasName, const MCSymbol *Aliasee) {} void MCStreamer::EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment) {} |