don't emit the symbol name twice for local bss and common
authorChris Lattner <sabre@nondot.org>
Tue, 26 Apr 2011 06:14:13 +0000 (06:14 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 26 Apr 2011 06:14:13 +0000 (06:14 +0000)
symbols.  For example, don't emit:
        .comm   _i,4,2                  ## @i
                                        ## @i

instead emit:
        .comm   _i,4,2                  ## @i

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@130192 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/AsmPrinter/AsmPrinter.cpp
test/CodeGen/ARM/2010-12-15-elf-lcomm.ll

index e4bd5a4b220020a44f2e09b872d481fc440dfc0d..b605de2b875f18b028bbdd3ef839662b68469152 100644 (file)
@@ -289,12 +289,6 @@ void AsmPrinter::EmitGlobalVariable(const GlobalVariable *GV) {
   if (GVKind.isCommon() || GVKind.isBSSLocal()) {
     if (Size == 0) Size = 1;   // .comm Foo, 0 is undefined, avoid it.
 
-    if (isVerbose()) {
-      WriteAsOperand(OutStreamer.GetCommentOS(), GV,
-                     /*PrintType=*/false, GV->getParent());
-      OutStreamer.GetCommentOS() << '\n';
-    }
-
     // Handle common symbols.
     if (GVKind.isCommon()) {
       unsigned Align = 1 << AlignLog;
index 7642dc4a2237f27aa0dd53c3eb31b6199ca6c65e..69d4a14822991cc8f58f3b91527b055b3ef906e8 100644 (file)
@@ -10,7 +10,7 @@
 @STRIDE = internal global i32 8
 
 ; ASM:          .type   array00,%object         @ @array00
-; ASM-NEXT:     .lcomm  array00,80              @ @array00
+; ASM-NEXT:     .lcomm  array00,80
 ; ASM-NEXT:     .type   _MergedGlobals,%object  @ @_MergedGlobals