1/* te-sun3.h -- Sun-3 target environment declarations.
2   Copyright 1987, 1990, 1991, 1992, 2000, 2003
3   Free Software Foundation, Inc.
4
5   This file is part of GAS, the GNU Assembler.
6
7   GAS is free software; you can redistribute it and/or modify
8   it under the terms of the GNU General Public License as published by
9   the Free Software Foundation; either version 2, or (at your option)
10   any later version.
11
12   GAS is distributed in the hope that it will be useful,
13   but WITHOUT ANY WARRANTY; without even the implied warranty of
14   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15   GNU General Public License for more details.
16
17   You should have received a copy of the GNU General Public License
18   along with GAS; see the file COPYING.  If not, write to
19   the Free Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
20   02110-1301, USA.  */
21
22/* This header file contains the #defines specific
23   to SUN computer SUN 3 series computers.  (The only kind
24   we have around here, unfortunately.)
25
26   Rumor has it that this file will work on the Sun-2 if the assembler
27   is called with -m68010  This is not tested.  */
28
29#define TE_SUN3	1
30
31#define LOCAL_LABELS_DOLLAR 1
32#define LOCAL_LABELS_FB 1
33
34/* Could also be :
35   #define S_LOCAL_NAME(s)	(S_GET_NAME(s)[0] == '.' &&
36   S_GET_NAME(s)[1] == 'L' ||
37   S_GET_NAME(s)[1] == '.')
38   */
39
40#include "obj-format.h"
41
42/*
43 * Local Variables:
44 * comment-column: 0
45 * fill-column: 131
46 * End:
47 */
48
49/* end of te-sun3.h */
50