comparison gcc/genconfig.c @ 55:77e2b8dfacca gcc-4.4.5

update it from 4.4.3 to 4.5.0
author ryoma <e075725@ie.u-ryukyu.ac.jp>
date Fri, 12 Feb 2010 23:39:51 +0900
parents a06113de4d67
children f6334be47118
comparison
equal deleted inserted replaced
52:c156f1bd5cd9 55:77e2b8dfacca
55 static void gen_split (rtx); 55 static void gen_split (rtx);
56 static void gen_peephole (rtx); 56 static void gen_peephole (rtx);
57 static void gen_peephole2 (rtx); 57 static void gen_peephole2 (rtx);
58 58
59 /* RECOG_P will be nonzero if this pattern was seen in a context where it will 59 /* RECOG_P will be nonzero if this pattern was seen in a context where it will
60 be used to recognize, rather than just generate an insn. 60 be used to recognize, rather than just generate an insn.
61 61
62 NON_PC_SET_SRC will be nonzero if this pattern was seen in a SET_SRC 62 NON_PC_SET_SRC will be nonzero if this pattern was seen in a SET_SRC
63 of a SET whose destination is not (pc). */ 63 of a SET whose destination is not (pc). */
64 64
65 static void 65 static void
285 int line_no, insn_code_number = 0; 285 int line_no, insn_code_number = 0;
286 286
287 desc = read_md_rtx (&line_no, &insn_code_number); 287 desc = read_md_rtx (&line_no, &insn_code_number);
288 if (desc == NULL) 288 if (desc == NULL)
289 break; 289 break;
290 290
291 switch (GET_CODE (desc)) 291 switch (GET_CODE (desc))
292 { 292 {
293 case DEFINE_INSN: 293 case DEFINE_INSN:
294 gen_insn (desc); 294 gen_insn (desc);
295 break; 295 break;
296 296
297 case DEFINE_EXPAND: 297 case DEFINE_EXPAND:
298 gen_expand (desc); 298 gen_expand (desc);
299 break; 299 break;
300 300
301 case DEFINE_SPLIT: 301 case DEFINE_SPLIT: