mirror of
https://github.com/intel/isa-l.git
synced 2024-12-12 17:33:50 +01:00
19 lines
361 B
C
19 lines
361 B
C
|
#ifndef __AARCH64_LABEL_H__
|
||
|
#define __AARCH64_LABEL_H__
|
||
|
|
||
|
#ifdef __USER_LABEL_PREFIX__
|
||
|
#define CONCAT1(a, b) CONCAT2(a, b)
|
||
|
#define CONCAT2(a, b) a ## b
|
||
|
#define cdecl(x) CONCAT1 (__USER_LABEL_PREFIX__, x)
|
||
|
#else
|
||
|
#define cdecl(x) x
|
||
|
#endif
|
||
|
|
||
|
#ifdef __APPLE__
|
||
|
#define ASM_DEF_RODATA .section __TEXT,__const
|
||
|
#else
|
||
|
#define ASM_DEF_RODATA .section .rodata
|
||
|
#endif
|
||
|
|
||
|
#endif
|