diff options
author | Chris Lattner <sabre@nondot.org> | 2011-04-26 06:14:13 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2011-04-26 06:14:13 +0000 |
commit | 189ca1498f0f97f0e728a1716edf574a04226bea (patch) | |
tree | a3bd4cc7acbf7718cd0521a69ebd07b7ea0e0964 /llvm/test | |
parent | 68d2218978b922bbb77ffca62c44daea73d1ae37 (diff) | |
download | bcm5719-llvm-189ca1498f0f97f0e728a1716edf574a04226bea.tar.gz bcm5719-llvm-189ca1498f0f97f0e728a1716edf574a04226bea.zip |
don't emit the symbol name twice for local bss and common
symbols. For example, don't emit:
.comm _i,4,2 ## @i
## @i
instead emit:
.comm _i,4,2 ## @i
llvm-svn: 130192
Diffstat (limited to 'llvm/test')
-rw-r--r-- | llvm/test/CodeGen/ARM/2010-12-15-elf-lcomm.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/ARM/2010-12-15-elf-lcomm.ll b/llvm/test/CodeGen/ARM/2010-12-15-elf-lcomm.ll index 7642dc4a223..69d4a148229 100644 --- a/llvm/test/CodeGen/ARM/2010-12-15-elf-lcomm.ll +++ b/llvm/test/CodeGen/ARM/2010-12-15-elf-lcomm.ll @@ -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 |