[lld] r201128 - [Mips] Add "data" symbols to the test input file. No functional changes.
Simon Atanasyan
simon at atanasyan.com
Mon Feb 10 21:33:54 PST 2014
Author: atanasyan
Date: Mon Feb 10 23:33:53 2014
New Revision: 201128
URL: http://llvm.org/viewvc/llvm-project?rev=201128&view=rev
Log:
[Mips] Add "data" symbols to the test input file. No functional changes.
Modified:
lld/trunk/test/elf/Mips/Inputs/ext.s
Modified: lld/trunk/test/elf/Mips/Inputs/ext.s
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/test/elf/Mips/Inputs/ext.s?rev=201128&r1=201127&r2=201128&view=diff
==============================================================================
--- lld/trunk/test/elf/Mips/Inputs/ext.s (original)
+++ lld/trunk/test/elf/Mips/Inputs/ext.s Mon Feb 10 23:33:53 2014
@@ -30,23 +30,9 @@ ext3:
nop
.end ext3
- .global ext4
- .type ext4, at function
- .ent ext4
-ext4:
- nop
- .end ext4
-
- .global ext5
- .type ext5, at function
- .ent ext5
-ext5:
- nop
- .end ext5
-
- .global ext6
- .type ext6, at function
- .ent ext6
-ext6:
- nop
- .end ext6
+ .type data1, at object
+ .comm data1,4,4
+ .type data2, at object
+ .comm data2,4,4
+ .type data3, at object
+ .comm data3,4,4
More information about the llvm-commits
mailing list