From: aj Date: Sat, 5 Jul 2003 11:23:01 +0000 (+0000) Subject: * genattrtab.c (write_attr_get): Revert part of last patch to X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d0abb70195ab3bf04deafad7c5504f2ca267736e;p=thirdparty%2Fgcc.git * genattrtab.c (write_attr_get): Revert part of last patch to always write out a prototype. * genemit.c (gen_split): Readd lost unused attributes in last patch. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@68967 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3fb943611c9c..f3369639fa46 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,11 @@ +2003-07-05 Andreas Jaeger + + * genattrtab.c (write_attr_get): Revert part of last patch to + always write out a prototype. + + * genemit.c (gen_split): Readd lost unused attributes in last + patch. + 2003-07-05 Zdenek Dvorak * cfgloopmanip.c (force_single_succ_latches): Force latch to be diff --git a/gcc/genattrtab.c b/gcc/genattrtab.c index 990cb0e70f92..a4f6e267f028 100644 --- a/gcc/genattrtab.c +++ b/gcc/genattrtab.c @@ -4765,6 +4765,21 @@ write_attr_get (struct attr_desc *attr) switch we will generate. */ common_av = find_most_used (attr); + /* Write out prototype of function. */ + if (!attr->is_numeric) + printf ("extern enum attr_%s ", attr->name); + else if (attr->unsigned_p) + printf ("extern unsigned int "); + else + printf ("extern int "); + /* If the attribute name starts with a star, the remainder is the name of + the subroutine to use, instead of `get_attr_...'. */ + if (attr->name[0] == '*') + printf ("%s (rtx);\n", &attr->name[1]); + else + printf ("get_attr_%s (%s);\n", attr->name, + (attr->is_const ? "void" : "rtx")); + /* Write out start of function, then all values with explicit `case' lines, then a `default', then the value with the most uses. */ if (!attr->is_numeric) diff --git a/gcc/genemit.c b/gcc/genemit.c index edeb1542bd0b..35b58a099e09 100644 --- a/gcc/genemit.c +++ b/gcc/genemit.c @@ -587,13 +587,13 @@ gen_split (rtx split) { printf ("extern rtx gen_%s_%d (rtx, rtx *);\n", name, insn_code_number); - printf ("rtx\ngen_%s_%d (rtx curr_insn ATTRIBUTE_UNUSED, rtx *operands)\n", - name, insn_code_number); + printf ("rtx\ngen_%s_%d (rtx curr_insn ATTRIBUTE_UNUSED, rtx *operands%s)\n", + name, insn_code_number, unused); } else { printf ("extern rtx gen_split_%d (rtx *);\n", insn_code_number); - printf ("rtx\ngen_%s_%d (rtx *operands)\n", name, insn_code_number); + printf ("rtx\ngen_%s_%d (rtx *operands%s)\n", name, insn_code_number, unused); } printf ("{\n");