blob: 15c3064f2557446a3a774f8d0c65fb8c62dba469 (
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
|
/*
* This file is te-ic960.h and is intended to define ic960 environment
* specific differences.
*/
/* $Id$ */
#define TE_IC960 1
/* intel uses host byte order for headers */
#ifdef CROSS_ASSEMBLE
#undef CROSS_ASSEMBLE
#endif /* CROSS_ASSEMBLE */
#define OBJ_COFF_OMIT_OPTIONAL_HEADER
#define LOCAL_LABEL(name) ( (name[0] =='L') \
|| (name[0] =='.' \
&& (name[1]=='C' || name[1]=='I' || name[1]=='.')))
#include "obj-format.h"
/*
* Local Variables:
* comment-column: 0
* fill-column: 131
* End:
*/
/* end of te-ic960.h */
|