summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/sparc/_math_inc.h
blob: 1bf84f04ef421f179f662b01c86971d90e12fa6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*
 * Setup some glibc defines so we can just drop in the
 * asm files from glibc without any modification.
 */

#include <features.h>
#include <bits/wordsize.h>

#define __ASSEMBLY__
#ifndef __sparc_v9__
#include <asm/traps.h>
#endif

/* Is alignment really needed? */

#if __WORDSIZE == 32
# define ENTRY_ALIGN 4
#else
# define ENTRY_ALIGN 2
#endif

#define ENTRY(sym) \
	.global sym; \
	.align  ENTRY_ALIGN; \
	.type   sym,%function; \
	sym:

#define LOC(sym) \
	.L ## sym

#define END(sym) \
	.size sym,.-sym;