From f822d2527eda821d7faeab8370a896d4591a100d Mon Sep 17 00:00:00 2001 From: Zack Weinberg Date: Wed, 18 Aug 2004 17:05:14 +0000 Subject: rtl.def (NIL): Delete. * rtl.def (NIL): Delete. * read-rtl.c (read_rtx): Handle (nil) like (define_constants). Tighten the syntax a little. * cfgloop.h, combine.c, cse.c, loop-iv.c, postreload.c, reload.c * config/alpha/alpha.c, config/alpha/alpha.h, config/arc/arc.h * config/arm/arm.h, config/frv/frv.h, config/i386/i386.c * config/i386/predicates.md, config/m32r/m32r.h * config/m68hc11/m68hc11.c, config/mcore/mcore.h, config/mips/mips.c * config/mmix/mmix.c, config/pa/pa.h, config/sh/sh.h * config/sparc/sparc.h, doc/tm.texi: Replace all occurrences of NIL with UNKNOWN. From-SVN: r86193 --- gcc/config/mmix/mmix.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gcc/config/mmix/mmix.c') diff --git a/gcc/config/mmix/mmix.c b/gcc/config/mmix/mmix.c index ae69548..6c5a193 100644 --- a/gcc/config/mmix/mmix.c +++ b/gcc/config/mmix/mmix.c @@ -2701,12 +2701,12 @@ mmix_output_condition (FILE *stream, rtx x, int reversed) { enum machine_mode cc_mode; - /* Terminated with {NIL, NULL, NULL} */ + /* Terminated with {UNKNOWN, NULL, NULL} */ const struct cc_conv *const convs; }; #undef CCEND -#define CCEND {NIL, NULL, NULL} +#define CCEND {UNKNOWN, NULL, NULL} static const struct cc_conv cc_fun_convs[] = {{ORDERED, "Z", "P"}, @@ -2764,7 +2764,7 @@ mmix_output_condition (FILE *stream, rtx x, int reversed) { if (mode == cc_convs[i].cc_mode) { - for (j = 0; cc_convs[i].convs[j].cc != NIL; j++) + for (j = 0; cc_convs[i].convs[j].cc != UNKNOWN; j++) if (cc == cc_convs[i].convs[j].cc) { const char *mmix_cc -- cgit v1.1