[lld] r199561 - [Mips] Specify the type of a symbol table entries in the test assembler
Simon Atanasyan
simon at atanasyan.com
Sat Jan 18 13:13:05 PST 2014
Author: atanasyan
Date: Sat Jan 18 15:13:05 2014
New Revision: 199561
URL: http://llvm.org/viewvc/llvm-project?rev=199561&view=rev
Log:
[Mips] Specify the type of a symbol table entries in the test assembler
file.
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=199561&r1=199560&r2=199561&view=diff
==============================================================================
--- lld/trunk/test/elf/Mips/Inputs/ext.s (original)
+++ lld/trunk/test/elf/Mips/Inputs/ext.s Sat Jan 18 15:13:05 2014
@@ -10,36 +10,42 @@
# lld -flavor gnu -target mipsel -e ext1 -o %t2 %t1
.global ext1
+ .type ext1, at function
.ent ext1
ext1:
nop
.end ext1
.global ext2
+ .type ext2, at function
.ent ext2
ext2:
nop
.end ext2
.global ext3
+ .type ext3, at function
.ent ext3
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
More information about the llvm-commits
mailing list