repo.or.cz
/
zpugcc
/
jano.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fixes for host gcc 4.6.1
[zpugcc/jano.git]
/
toolchain
/
gcc
/
libgloss
/
i960
/
asm.h
blob
9595697461188fdf5f33f29b27a69661738d5650
1
#ifndef ASM_H
2
#define ASM_H
3
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
10
11
#define _ENTRY(name) \
12
.text; .align 4; .globl name; name:
13
14
#define ENTRY(name) \
15
_ENTRY(_C_LABEL(name))
16
17
#endif