From 9524f769a795d7ad5b9a1d5266d372ef3f466f4c Mon Sep 17 00:00:00 2001 From: "David S. Miller" Date: Mon, 22 Sep 1997 17:41:48 +0000 Subject: combine.c (try_combine): Use NULL_RTX instead of '0' where appropriate in calls to gen_rtx(). * combine.c (try_combine): Use NULL_RTX instead of '0' where appropriate in calls to gen_rtx(). * cse.c (cse_main): Likewise. * emit-rtl.c (gen_label_rtx): Likewise. * expr.c (init_expr_once): Likewise. * haifa-sched.c (flush_pending_lists, sched_analyze_insn, sched_analyze, init_rgn_data_dependences, compute_block_backward_dependences): Likewise. * sched.c (schedule_insns): Likewise. * varasm.c (immed_double_const): Likewise. From-SVN: r15630 --- gcc/cse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/cse.c') diff --git a/gcc/cse.c b/gcc/cse.c index e35a814..a8c6090 100644 --- a/gcc/cse.c +++ b/gcc/cse.c @@ -8200,7 +8200,7 @@ cse_main (f, nregs, after_loop, file) /* Allocate scratch rtl here. cse_insn will fill in the memory reference and change the code and mode as appropriate. */ - memory_extend_rtx = gen_rtx (ZERO_EXTEND, VOIDmode, 0); + memory_extend_rtx = gen_rtx (ZERO_EXTEND, VOIDmode, NULL_RTX); #endif /* Discard all the free elements of the previous function -- cgit v1.1