diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1993-03-02 13:23:48 -0800 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1993-03-02 13:23:48 -0800 |
commit | dea2643ccd40f92a2e81ce1ee84d441f4507e0bc (patch) | |
tree | b0d4b344d3d66f92a531d575d0b59c7babf53ccb /gcc/genattrtab.c | |
parent | afcd8a020f2737574abea7d3971656621bde559c (diff) | |
download | gcc-dea2643ccd40f92a2e81ce1ee84d441f4507e0bc.zip gcc-dea2643ccd40f92a2e81ce1ee84d441f4507e0bc.tar.gz gcc-dea2643ccd40f92a2e81ce1ee84d441f4507e0bc.tar.bz2 |
(write_const_num_delay_slots): Output 'rtx insn' not
'rtx *insn' for const_num_delay_slot argument.
From-SVN: r3613
Diffstat (limited to 'gcc/genattrtab.c')
-rw-r--r-- | gcc/genattrtab.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/genattrtab.c b/gcc/genattrtab.c index 4a3e70a..b717f24 100644 --- a/gcc/genattrtab.c +++ b/gcc/genattrtab.c @@ -5436,7 +5436,7 @@ write_const_num_delay_slots () if (attr) { printf ("int\nconst_num_delay_slots (insn)\n"); - printf (" rtx *insn;\n"); + printf (" rtx insn;\n"); printf ("{\n"); printf (" switch (recog_memoized (insn))\n"); printf (" {\n"); |