fixes for host gcc 4.6.1
[zpugcc/jano.git] / toolchain / gcc / libgloss / i960 / asm.h
blob9595697461188fdf5f33f29b27a69661738d5650
1 #ifndef ASM_H
2 #define ASM_H
4 #ifdef __STDC__
5 # define _C_LABEL(x) _ ## x
6 #else
7 # define _C_LABEL(x) _/**/x
8 #endif
9 #define _ASM_LABEL(x) x
11 #define _ENTRY(name) \
12 .text; .align 4; .globl name; name:
14 #define ENTRY(name) \
15 _ENTRY(_C_LABEL(name))
17 #endif