diff options
author | nathan <nathan@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-09 15:58:21 +0000 |
---|---|---|
committer | nathan <nathan@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-09 15:58:21 +0000 |
commit | 9cee7c3f6fd4fa30563fa22dd62334bb06667112 (patch) | |
tree | c4ffa2ad3dad1e3ec528b5e2c71f6e4281357d6b /gcc/genattrtab.c | |
parent | 0d59b19dc2331e2fd6d3ce1d95d0d6c22263c282 (diff) | |
download | gcc-9cee7c3f6fd4fa30563fa22dd62334bb06667112.tar.gz |
* cgraphunit.c (cgraph_mark_functions_to_output): Renable node
dumping for development builds.
* emit-rtl.c (verify_rtx_sharing): Give verbose failure for
development builds only.
* genattrtab.c (write_eligible_delay): Fix typo in previous
commit.
* tree.c (iterative_hash_expr): Replace gcc_unreachable with
gcc_assert.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@87241 138bc75d-0d04-0410-961f-82ee72b054a4
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 f3385caa7dc..dc8ff6ebcb3 100644 --- a/gcc/genattrtab.c +++ b/gcc/genattrtab.c @@ -4125,7 +4125,7 @@ write_eligible_delay (const char *kind) printf ("{\n"); printf (" rtx insn;\n"); printf ("\n"); - printf (" gcc_assert (slot < %d)\n", max_slots); + printf (" gcc_assert (slot < %d);\n", max_slots); printf ("\n"); /* Allow dbr_schedule to pass labels, etc. This can happen if try_split converts a compound instruction into a loop. */ |