1 |
|
#if (defined(__APPLE__) && defined(__MACH__)) |
2 |
< |
#define C_SYMBOL_NAME(X) _ ## X |
2 |
> |
#define C_SYMBOL_NAME(NAME) _ ## NAME |
3 |
> |
#define ASM_MACRO_END .endmacro |
4 |
> |
#endif |
5 |
> |
|
6 |
> |
/* Defaults for GNU assembler */ |
7 |
> |
#ifndef ASM_MACRO_START |
8 |
> |
#define ASM_MACRO_START .macro |
9 |
> |
#endif |
10 |
> |
#ifndef ASM_MACRO_END |
11 |
> |
#define ASM_MACRO_END .endm |
12 |
|
#endif |
13 |
|
#ifndef C_SYMBOL_NAME |
14 |
< |
#define C_SYMBOL_NAME(X) X |
14 |
> |
#define C_SYMBOL_NAME(NAME) NAME |
15 |
|
#endif |
16 |
|
#ifndef ASM_GLOBAL_DIRECTIVE |
17 |
< |
#define ASM_GLOBAL_DIRECTIVE .globl |
17 |
> |
#define ASM_GLOBAL_DIRECTIVE .globl |
18 |
|
#endif |
19 |
|
|
20 |
|
/* Register names */ |