diff options
| author | seyko <seyko2@gmail.com> | 2016-04-13 03:52:07 +0300 |
|---|---|---|
| committer | seyko <seyko2@gmail.com> | 2016-04-13 03:52:07 +0300 |
| commit | 131d776d662372747dbec2aebcee5067e62e12ea (patch) | |
| tree | 3550668089a4e67840be8a34d923ca8622ed712c /tcctok.h | |
| parent | 174d06a3ff549702d1c7b9df6ce7a096801ba3ae (diff) | |
| download | tinycc-131d776d662372747dbec2aebcee5067e62e12ea.tar.gz tinycc-131d776d662372747dbec2aebcee5067e62e12ea.tar.bz2 | |
revert of the 'Identifiers can start and/or contain'
When tccboot kernels compiles with
'Identifiers can start and/or', this kernel don't start.
It is hard to find what is wrong.
PS: there was no test for identifiers in *.S with '.'
Diffstat (limited to 'tcctok.h')
| -rw-r--r-- | tcctok.h | 57 |
1 files changed, 26 insertions, 31 deletions
@@ -301,40 +301,35 @@ #endif /* Tiny Assembler */ - DEF_ASMDIR(byte) /* must be first directive */ - DEF_ASMDIR(word) - DEF_ASMDIR(align) - DEF_ASMDIR(p2align) - DEF_ASMDIR(skip) - DEF_ASMDIR(space) - DEF_ASMDIR(string) - DEF_ASMDIR(asciz) - DEF_ASMDIR(ascii) - DEF_ASMDIR(file) - DEF_ASMDIR(globl) - DEF_ASMDIR(global) - DEF_ASMDIR(weak) - DEF_ASMDIR(hidden) - DEF_ASMDIR(ident) - DEF_ASMDIR(size) - DEF_ASMDIR(type) - DEF_ASMDIR(text) - DEF_ASMDIR(data) - DEF_ASMDIR(bss) - DEF_ASMDIR(previous) - DEF_ASMDIR(fill) - DEF_ASMDIR(org) - DEF_ASMDIR(quad) + DEF_ASM(byte) + DEF_ASM(word) + DEF_ASM(align) + DEF_ASM(p2align) + DEF_ASM(skip) + DEF_ASM(space) + DEF_ASM(string) + DEF_ASM(asciz) + DEF_ASM(ascii) + DEF_ASM(file) + DEF_ASM(globl) + DEF_ASM(global) + DEF_ASM(hidden) + DEF_ASM(ident) + DEF_ASM(size) + DEF_ASM(type) + DEF_ASM(text) + DEF_ASM(data) + DEF_ASM(bss) + DEF_ASM(previous) + DEF_ASM(fill) + DEF_ASM(org) + DEF_ASM(quad) #if defined(TCC_TARGET_I386) - DEF_ASMDIR(code16) - DEF_ASMDIR(code32) + DEF_ASM(code16) + DEF_ASM(code32) #elif defined(TCC_TARGET_X86_64) - DEF_ASMDIR(code64) + DEF_ASM(code64) #endif - DEF_ASMDIR(short) - DEF_ASMDIR(long) - DEF_ASMDIR(int) - DEF_ASMDIR(section) /* must be last directive */ #if defined TCC_TARGET_I386 || defined TCC_TARGET_X86_64 #include "i386-tok.h" |
