From e72a36bbb25e0c4bffadb1f534e4b93147ce96d9 Mon Sep 17 00:00:00 2001 From: ceriel Date: Thu, 26 Jan 1989 15:42:50 +0000 Subject: [PATCH] renamed jump, prolog, and locals to C_jump, C_prolog, and C_locals --- util/ceg/EM_parser/common/C_instr2.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/util/ceg/EM_parser/common/C_instr2.c b/util/ceg/EM_parser/common/C_instr2.c index fd30e8736..89938e4a7 100644 --- a/util/ceg/EM_parser/common/C_instr2.c +++ b/util/ceg/EM_parser/common/C_instr2.c @@ -1,4 +1,5 @@ #include "decl.h" +#include /* This file contains two arrays with information concerning the C_INSTR tokens: * t_C_info C_info[]; - Describes the arguments of EM-instructions @@ -414,9 +415,9 @@ struct { char *name; int class, segment;} { "C_zrf", W_ARG, SEGTXT}, { "C_zrf_narg", NO_ARGS, SEGTXT}, { "C_zrl", L_ARG, SEGTXT}, - { "jump", _STRING, SEGTXT}, - { "locals", N_ARG, SEGTXT}, - { "prolog", NO_ARGS, SEGTXT} + { "C_jump", _STRING, SEGTXT}, + { "C_locals", N_ARG, SEGTXT}, + { "C_prolog", NO_ARGS, SEGTXT} }; set_C_instr_info( instr) @@ -434,7 +435,7 @@ char *instr; if ( rel == 0 ) break; else if ( high == low) { - out( "ERROR : can't find >>%s<< !!\n", instr); + fprint(STDERR, "ERROR : can't find >>%s<< !!\n", instr); abort(); } else if ( rel < 0) -- 2.34.1