repo.or.cz
/
newlib-cygwin.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Changes for 4.5.0 snapshot
[newlib-cygwin.git]
/
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