Commit 74f6d071 by Jan Hubicka Committed by Jan Hubicka

* expr.c (do_tablejump): Fix typo in my previous commit.

From-SVN: r58179
parent 20a5fa3d
Tue Oct 15 22:08:35 CEST 2002 Jan Hubicka <jh@suse.cz>
* expr.c (do_tablejump): Fix typo in my previous commit.
2002-10-15 Richard Sandiford <rsandifo@redhat.com> 2002-10-15 Richard Sandiford <rsandifo@redhat.com>
* config/mips/vr.h (DRIVER_SELF_SPECS): Change %<mgp32 to %{<mgp32}. * config/mips/vr.h (DRIVER_SELF_SPECS): Change %<mgp32 to %{<mgp32}.
......
...@@ -10942,8 +10942,8 @@ do_tablejump (index, mode, range, table_label, default_label) ...@@ -10942,8 +10942,8 @@ do_tablejump (index, mode, range, table_label, default_label)
{ {
rtx temp, vector; rtx temp, vector;
if (range > cfun->max_jumptable_ents) if (INTVAL (range) > cfun->max_jumptable_ents)
cfun->max_jumptable_ents = range; cfun->max_jumptable_ents = INTVAL (range);
/* Do an unsigned comparison (in the proper mode) between the index /* Do an unsigned comparison (in the proper mode) between the index
expression and the value which represents the length of the range. expression and the value which represents the length of the range.
......
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