From 19f8b22971b1aeaa929eb3e3834cc24da1932f12 Mon Sep 17 00:00:00 2001 From: Trevor Saunders 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. From-SVN: r214841 --- gcc/function.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/function.c') diff --git a/gcc/function.c b/gcc/function.c index 2e46799..8b125ae 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -4661,7 +4661,7 @@ void stack_protect_epilogue (void) { tree guard_decl = targetm.stack_protect_guard (); - rtx label = gen_label_rtx (); + rtx_code_label *label = gen_label_rtx (); rtx x, y, tmp; x = expand_normal (crtl->stack_protect_guard); -- cgit v1.1