1 /* obj-evax.c - EVAX (openVMS/Alpha) object file format.
2 Copyright 1996, 1997 Free Software Foundation, Inc.
3 Contributed by Klaus Kämpf (kkaempf@progis.de) of
4 proGIS Software, Aachen, Germany.
6 This file is part of GAS, the GNU Assembler
8 GAS is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
13 GAS is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GAS; see the file COPYING. If not, write to
20 the Free Software Foundation, 59 Temple Place - Suite 330, Boston,
21 MA 02111-1307, USA. */
23 #define OBJ_HEADER "obj-evax.h"
27 static void s_evax_weak
PARAMS ((int));
29 const pseudo_typeS obj_pseudo_table
[] =
31 { "weak", s_evax_weak
, 0},
33 }; /* obj_pseudo_table */
35 void obj_read_begin_hook () {}
37 /* Handle the weak specific pseudo-op. */
50 stop
= mri_comment_field (&stopc
);
54 name
= input_line_pointer
;
55 c
= get_symbol_end ();
56 symbolP
= symbol_find_or_make (name
);
57 *input_line_pointer
= c
;
64 if (*input_line_pointer
== '\n')
71 mri_comment_end (stop
, stopc
);
73 demand_empty_rest_of_line ();
83 /* end of obj-evax.c */