Commit 7b4dfe3d by Richard Henderson Committed by Richard Henderson

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

From-SVN: r48695
parent 7d5ab30e
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> 2002-01-09 Jan Hubicka <jh@suse.cz>
* gcse.c (cprop_jump): Delete insn if simplified jump is no-op. * gcse.c (cprop_jump): Delete insn if simplified jump is no-op.
......
...@@ -521,7 +521,10 @@ vax_rtx_cost (x) ...@@ -521,7 +521,10 @@ vax_rtx_cost (x)
c = 10; /* 3-4 on VAX 9000, 20-28 on VAX 2 */ c = 10; /* 3-4 on VAX 9000, 20-28 on VAX 2 */
break; break;
default: default:
abort (); /* Careful, init_expmed generates arbitrary rtx and
computes costs, so we can't abort. */
c = 1000;
break;
} }
break; break;
case UDIV: case UDIV:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment