* config/vax/vax.c (vax_rtx_cost): Never abort.

From-SVN: r48695
This commit is contained in:
Richard Henderson 2002-01-09 13:52:54 -08:00 committed by Richard Henderson
parent 7d5ab30eb3
commit 7b4dfe3d55
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2002-01-09 Richard Henderson <rth@redhat.com>
* config/vax/vax.c (vax_rtx_cost): Never abort.
2002-01-09 Jan Hubicka <jh@suse.cz>
* gcse.c (cprop_jump): Delete insn if simplified jump is no-op.

View File

@ -521,7 +521,10 @@ vax_rtx_cost (x)
c = 10; /* 3-4 on VAX 9000, 20-28 on VAX 2 */
break;
default:
abort ();
/* Careful, init_expmed generates arbitrary rtx and
computes costs, so we can't abort. */
c = 1000;
break;
}
break;
case UDIV: