summaryrefslogtreecommitdiff
path: root/gcc/config/i386/i386.md
diff options
context:
space:
mode:
authortbsaunde <tbsaunde@138bc75d-0d04-0410-961f-82ee72b054a4>2014-09-03 00:52:11 +0000
committertbsaunde <tbsaunde@138bc75d-0d04-0410-961f-82ee72b054a4>2014-09-03 00:52:11 +0000
commit79f6a8ededa26fbb1d56afec44179fc57ae26072 (patch)
treee28f89f967e112a1f7b08b7f9ca06abd3d852eef /gcc/config/i386/i386.md
parentb12d23303f6d3d6d295fd0e9c749ee82bd23fa3f (diff)
downloadgcc-79f6a8ededa26fbb1d56afec44179fc57ae26072.tar.gz
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
Diffstat (limited to 'gcc/config/i386/i386.md')
-rw-r--r--gcc/config/i386/i386.md16
1 files changed, 8 insertions, 8 deletions
diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md
index 723f42fe931..d5588c80b2a 100644
--- a/gcc/config/i386/i386.md
+++ b/gcc/config/i386/i386.md
@@ -9173,7 +9173,7 @@
(use (match_operand:QI 2 "register_operand"))]
""
{
- rtx label = gen_label_rtx ();
+ rtx_code_label *label = gen_label_rtx ();
rtx tmp;
emit_insn (gen_testqi_ccz_1 (operands[2],
@@ -9836,7 +9836,7 @@
(use (match_operand:QI 2 "register_operand"))]
""
{
- rtx label = gen_label_rtx ();
+ rtx_code_label *label = gen_label_rtx ();
rtx tmp;
emit_insn (gen_testqi_ccz_1 (operands[2],
@@ -13844,7 +13844,7 @@
(use (match_operand:XF 2 "general_operand"))]
"TARGET_USE_FANCY_MATH_387"
{
- rtx label = gen_label_rtx ();
+ rtx_code_label *label = gen_label_rtx ();
rtx op1 = gen_reg_rtx (XFmode);
rtx op2 = gen_reg_rtx (XFmode);
@@ -13869,7 +13869,7 @@
{
rtx (*gen_truncxf) (rtx, rtx);
- rtx label = gen_label_rtx ();
+ rtx_code_label *label = gen_label_rtx ();
rtx op1 = gen_reg_rtx (XFmode);
rtx op2 = gen_reg_rtx (XFmode);
@@ -13915,7 +13915,7 @@
(use (match_operand:XF 2 "general_operand"))]
"TARGET_USE_FANCY_MATH_387"
{
- rtx label = gen_label_rtx ();
+ rtx_code_label *label = gen_label_rtx ();
rtx op1 = gen_reg_rtx (XFmode);
rtx op2 = gen_reg_rtx (XFmode);
@@ -13940,7 +13940,7 @@
{
rtx (*gen_truncxf) (rtx, rtx);
- rtx label = gen_label_rtx ();
+ rtx_code_label *label = gen_label_rtx ();
rtx op1 = gen_reg_rtx (XFmode);
rtx op2 = gen_reg_rtx (XFmode);
@@ -16950,7 +16950,7 @@
{
rtx xops[3];
rtx picreg = gen_rtx_REG (Pmode, PIC_OFFSET_TABLE_REGNUM);
- rtx label_rtx = gen_label_rtx ();
+ rtx_code_label *label_rtx = gen_label_rtx ();
emit_insn (gen_set_got_labelled (pic_offset_table_rtx, label_rtx));
xops[0] = xops[1] = picreg;
xops[2] = machopic_gen_offset (gen_rtx_LABEL_REF (SImode, label_rtx));
@@ -18532,7 +18532,7 @@
(unspec_volatile:SI [(const_int 0)] UNSPECV_XBEGIN))]
"TARGET_RTM"
{
- rtx label = gen_label_rtx ();
+ rtx_code_label *label = gen_label_rtx ();
/* xbegin is emitted as jump_insn, so reload won't be able
to reload its operand. Force the value into AX hard register. */