both .globl and .global directives are accepted by as

tcc-xref
bellard 2004-10-02 14:01:26 +00:00
parent c1265d1616
commit 8da6027e73
3 changed files with 4 additions and 0 deletions

View File

@ -603,6 +603,7 @@ They can be defined several times in the same source. Use 'b'
@cindex .long
@cindex .string
@cindex .globl
@cindex .global
@cindex .section
@cindex .text
@cindex .data
@ -621,6 +622,7 @@ supported:
@item .int value1[,value2...]
@item .long value1[,value2...]
@item .string string
@item .globl symbol
@item .global symbol
@item .section section
@item .text

View File

@ -362,6 +362,7 @@ static void asm_parse_directive(TCCState *s1)
}
break;
case TOK_ASM_globl:
case TOK_ASM_global:
{
Sym *sym;

View File

@ -163,6 +163,7 @@
DEF_ASM(space)
DEF_ASM(string)
DEF_ASM(globl)
DEF_ASM(global)
DEF_ASM(text)
DEF_ASM(data)
DEF_ASM(bss)