aboutsummaryrefslogtreecommitdiff
path: root/gcc/emit-rtl.c
diff options
context:
space:
mode:
authorZack Weinberg <zack@gcc.gnu.org>2004-03-30 19:19:06 +0000
committerZack Weinberg <zack@gcc.gnu.org>2004-03-30 19:19:06 +0000
commit1431042ef1f76baf550557885af9945aa76148e8 (patch)
treeeb5c785a332c675110a75f8bdba7609d72204214 /gcc/emit-rtl.c
parent9ffab06b25e310701c8fd82d2c65e265b49ba299 (diff)
downloadgcc-1431042ef1f76baf550557885af9945aa76148e8.zip
gcc-1431042ef1f76baf550557885af9945aa76148e8.tar.gz
gcc-1431042ef1f76baf550557885af9945aa76148e8.tar.bz2
gengtype.c (create_option): New function.
* gengtype.c (create_option): New function. * gengtype.h: Prototype it. * gengtype-yacc.y (stringseq): New rule. (option): Use create_option. Add new bare ID production. Use stringseq, not STRING directly. * alias.c, bitmap.c, c-decl.c, cgraph.h, cpplib.h, cselib.h * dwarf2out.c, emit-rtl.c, function.h, lists.c, tree.h * varray.h, config/alpha/alpha.c, cp/name-lookup.c, cp/parser.c * f/com.c, java/builtins.c, java/expr.c, java/jcf.h, java/parse.h: Use new shorter form of GTY markers. * doc/gty.texi: Rewrite. From-SVN: r80091
Diffstat (limited to 'gcc/emit-rtl.c')
-rw-r--r--gcc/emit-rtl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/emit-rtl.c b/gcc/emit-rtl.c
index cb6f4cb..399bf23 100644
--- a/gcc/emit-rtl.c
+++ b/gcc/emit-rtl.c
@@ -4751,7 +4751,7 @@ emit (rtx x)
}
/* Space for free sequence stack entries. */
-static GTY ((deletable (""))) struct sequence_stack *free_sequence_stack;
+static GTY ((deletable)) struct sequence_stack *free_sequence_stack;
/* Begin emitting insns to a sequence which can be packaged in an
RTL_EXPR. If this sequence will contain something that might cause
@@ -5483,7 +5483,7 @@ emit_copy_of_insn_after (rtx insn, rtx after)
return new;
}
-static GTY((deletable(""))) rtx hard_reg_clobbers [NUM_MACHINE_MODES][FIRST_PSEUDO_REGISTER];
+static GTY((deletable)) rtx hard_reg_clobbers [NUM_MACHINE_MODES][FIRST_PSEUDO_REGISTER];
rtx
gen_hard_reg_clobber (enum machine_mode mode, unsigned int regno)
{