diff options
author | Chris Lattner <sabre@nondot.org> | 2010-01-19 06:25:51 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-01-19 06:25:51 +0000 |
commit | cd2915e46769317c8e2393bb6d2a2aed58036f45 (patch) | |
tree | 507ecc4dfeadbe722963d069da86989b0ac3ab92 /llvm/lib/MC/MCAsmInfoDarwin.cpp | |
parent | ab9cd3e132a86f99c8784c6025c6f55bb5cf2612 (diff) | |
download | bcm5719-llvm-cd2915e46769317c8e2393bb6d2a2aed58036f45.tar.gz bcm5719-llvm-cd2915e46769317c8e2393bb6d2a2aed58036f45.zip |
stop using the .lcomm pseudoop on darwin, instead, directly use the
.zerofill directive. Streamerize its generation.
llvm-svn: 93868
Diffstat (limited to 'llvm/lib/MC/MCAsmInfoDarwin.cpp')
-rw-r--r-- | llvm/lib/MC/MCAsmInfoDarwin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/MC/MCAsmInfoDarwin.cpp b/llvm/lib/MC/MCAsmInfoDarwin.cpp index a1f6051990e..664a55c0888 100644 --- a/llvm/lib/MC/MCAsmInfoDarwin.cpp +++ b/llvm/lib/MC/MCAsmInfoDarwin.cpp @@ -33,15 +33,15 @@ MCAsmInfoDarwin::MCAsmInfoDarwin() { WeakDefDirective = "\t.weak_definition "; WeakRefDirective = "\t.weak_reference "; HiddenDirective = "\t.private_extern "; - LCOMMDirective = "\t.lcomm\t"; ZeroDirective = "\t.space\t"; // ".space N" emits N zeros. HasMachoZeroFillDirective = true; // Uses .zerofill HasStaticCtorDtorReferenceInStaticMode = true; - LCOMMDirectiveTakesAlignment = true; SetDirective = "\t.set"; ProtectedDirective = "\t.globl\t"; HasDotTypeDotSizeDirective = false; UsedDirective = "\t.no_dead_strip\t"; + // Note: Even though darwin has the .lcomm directive, it is just a synonym for + // zerofill, so we prefer to use .zerofill. // _foo.eh symbols are currently always exported so that the linker knows // about them. This is not necessary on 10.6 and later, but it |