mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-21 18:39:34 +08:00
* symbols.c (colon): Call obj_frob_label if it is defined.
* config/obj-vms.h (obj_frob_label): Rename from tc_frob_label.
This commit is contained in:
@ -1,5 +1,8 @@
|
|||||||
Fri Mar 21 15:42:37 1997 Ian Lance Taylor <ian@cygnus.com>
|
Fri Mar 21 15:42:37 1997 Ian Lance Taylor <ian@cygnus.com>
|
||||||
|
|
||||||
|
* symbols.c (colon): Call obj_frob_label if it is defined.
|
||||||
|
* config/obj-vms.h (obj_frob_label): Rename from tc_frob_label.
|
||||||
|
|
||||||
* configure.in: Don't set files and links. Don't call
|
* configure.in: Don't set files and links. Don't call
|
||||||
AC_LINK_FILES. Substitute te_file. Create targ-cpu.h,
|
AC_LINK_FILES. Substitute te_file. Create targ-cpu.h,
|
||||||
obj-format.h, targ-env.h, and itbl-cpu.h in AC_OUTPUT.
|
obj-format.h, targ-env.h, and itbl-cpu.h in AC_OUTPUT.
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
/* VMS object file format
|
/* VMS object file format
|
||||||
Copyright (C) 1989,90,91,94,95,1996 Free Software Foundation, Inc.
|
Copyright (C) 1989, 90, 91, 92, 93, 94, 95, 96, 1997
|
||||||
|
Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GAS, the GNU Assembler.
|
This file is part of GAS, the GNU Assembler.
|
||||||
|
|
||||||
@ -13,9 +14,10 @@ WITHOUT ANY WARRANTY; without even the implied warranty of
|
|||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
|
||||||
the GNU General Public License for more details.
|
the GNU General Public License for more details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public
|
You should have received a copy of the GNU General Public License
|
||||||
License along with GAS; see the file COPYING. If not, write
|
along with GAS; see the file COPYING. If not, write to the Free
|
||||||
to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
Software Foundation, 59 Temple Place - Suite 330, Boston, MA
|
||||||
|
02111-1307, USA. */
|
||||||
|
|
||||||
/* Tag to validate a.out object file format processing */
|
/* Tag to validate a.out object file format processing */
|
||||||
#define OBJ_VMS 1
|
#define OBJ_VMS 1
|
||||||
@ -224,7 +226,7 @@ extern int vms_resolve_symbol_redef PARAMS ((struct symbol *));
|
|||||||
|
|
||||||
/* Compiler-generated label "__vax_g_doubles" is used to augment .stabs. */
|
/* Compiler-generated label "__vax_g_doubles" is used to augment .stabs. */
|
||||||
extern void vms_check_for_special_label PARAMS ((struct symbol *));
|
extern void vms_check_for_special_label PARAMS ((struct symbol *));
|
||||||
#define tc_frob_label(X) vms_check_for_special_label(X)
|
#define obj_frob_label(X) vms_check_for_special_label(X)
|
||||||
|
|
||||||
extern void vms_check_for_main PARAMS ((void));
|
extern void vms_check_for_main PARAMS ((void));
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user