diff options
author | Ian Lance Taylor <ian@airs.com> | 1997-03-21 23:06:08 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1997-03-21 23:06:08 +0000 |
commit | a71dc2046131651a17b591ddb1ebceb28799fdfc (patch) | |
tree | 39c600a0b809db0514a4cd7a0494ec491dfac45a /gas/config/obj-vms.h | |
parent | c28b08c24664d6ea45be18d18761c87ef49e7204 (diff) | |
download | gdb-a71dc2046131651a17b591ddb1ebceb28799fdfc.zip gdb-a71dc2046131651a17b591ddb1ebceb28799fdfc.tar.gz gdb-a71dc2046131651a17b591ddb1ebceb28799fdfc.tar.bz2 |
* symbols.c (colon): Call obj_frob_label if it is defined.
* config/obj-vms.h (obj_frob_label): Rename from tc_frob_label.
Diffstat (limited to 'gas/config/obj-vms.h')
-rw-r--r-- | gas/config/obj-vms.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/gas/config/obj-vms.h b/gas/config/obj-vms.h index 7421bb5..ac0c1fb 100644 --- a/gas/config/obj-vms.h +++ b/gas/config/obj-vms.h @@ -1,5 +1,6 @@ /* 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. @@ -13,9 +14,10 @@ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. -You should have received a copy of the GNU General Public -License along with GAS; see the file COPYING. If not, write -to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +You should have received a copy of the GNU General Public License +along with GAS; see the file COPYING. If not, write to the Free +Software Foundation, 59 Temple Place - Suite 330, Boston, MA +02111-1307, USA. */ /* Tag to validate a.out object file format processing */ #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. */ 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)); |