From 79f6a8ededa26fbb1d56afec44179fc57ae26072 Mon Sep 17 00:00:00 2001 From: tbsaunde Date: Wed, 3 Sep 2014 00:52:11 +0000 Subject: use rtx_code_label more gcc/ * asan.c, cfgexpand.c, config/alpha/alpha.md, config/arm/arm.c, config/epiphany/epiphany.md, config/h8300/h8300.c, config/i386/i386.md, config/m32r/m32r.c, config/mcore/mcore.md, config/mips/mips.c, config/mips/mips.md, config/nios2/nios2.c, config/pa/pa.c, config/s390/s390.c, config/s390/s390.md, config/sh/sh-mem.cc, config/sh/sh.c, config/sparc/sparc.c, dojump.c, function.c, optabs.c, stmt.c: Assign the result of gen_label_rtx to rtx_code_label * instead of rtx. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@214841 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/cfgexpand.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gcc/cfgexpand.c') diff --git a/gcc/cfgexpand.c b/gcc/cfgexpand.c index 0a1b4bf64c2..7d11b1b5df7 100644 --- a/gcc/cfgexpand.c +++ b/gcc/cfgexpand.c @@ -2007,7 +2007,7 @@ label_rtx_for_bb (basic_block bb ATTRIBUTE_UNUSED) return label_rtx (lab); } - rtx l = gen_label_rtx (); + rtx_code_label *l = gen_label_rtx (); lab_rtx_for_bb->put (bb, l); return l; } @@ -2469,7 +2469,7 @@ expand_asm_operands (tree string, tree outputs, tree inputs, enum machine_mode *inout_mode = XALLOCAVEC (enum machine_mode, noutputs); const char **constraints = XALLOCAVEC (const char *, noutputs + ninputs); int old_generating_concat_p = generating_concat_p; - rtx fallthru_label = NULL_RTX; + rtx_code_label *fallthru_label = NULL; /* An ASM with no outputs needs to be treated as volatile, for now. */ if (noutputs == 0) -- cgit v1.2.1