1
#ifndef __XSCALE_MACH_H__
2
#define __XSCALE_MACH_H__
4
/* These are predefined by new versions of GNU cpp. */
6
#ifndef __USER_LABEL_PREFIX__
7
#define __USER_LABEL_PREFIX__ _
10
#ifndef __REGISTER_PREFIX__
11
#define __REGISTER_PREFIX__
14
/* ANSI concatenation macros. */
16
#define CONCAT1(a, b) CONCAT2(a, b)
17
#define CONCAT2(a, b) a##b
19
/* Use the right prefix for global labels. */
21
#define SYM(x) CONCAT1(__USER_LABEL_PREFIX__, x)
23
#define PRELOAD(X) pld [X]
24
#define PRELOADSTR(X) " pld [" X "]"
26
#endif /* !__XSCALE_MACH_H__ */