diff options
Diffstat (limited to 'lib/MC')
-rw-r--r-- | lib/MC/MCAsmInfo.cpp | 1 | ||||
-rw-r--r-- | lib/MC/MCAsmInfoCOFF.cpp | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/lib/MC/MCAsmInfo.cpp b/lib/MC/MCAsmInfo.cpp index 4c53d7a..556b0aa 100644 --- a/lib/MC/MCAsmInfo.cpp +++ b/lib/MC/MCAsmInfo.cpp @@ -62,6 +62,7 @@ MCAsmInfo::MCAsmInfo() { UsedDirective = 0; WeakRefDirective = 0; WeakDefDirective = 0; + LinkOnceDirective = 0; // FIXME: These are ELFish - move to ELFMAI. HiddenDirective = "\t.hidden\t"; ProtectedDirective = "\t.protected\t"; diff --git a/lib/MC/MCAsmInfoCOFF.cpp b/lib/MC/MCAsmInfoCOFF.cpp index 23b0dd7..1b27bf0 100644 --- a/lib/MC/MCAsmInfoCOFF.cpp +++ b/lib/MC/MCAsmInfoCOFF.cpp @@ -25,6 +25,7 @@ MCAsmInfoCOFF::MCAsmInfoCOFF() { HiddenDirective = NULL; PrivateGlobalPrefix = "L"; // Prefix for private global symbols WeakRefDirective = "\t.weak\t"; + LinkOnceDirective = "\t.linkonce same_size\n"; SetDirective = "\t.set\t"; // Set up DWARF directives |