diff options
author | Jan Hubicka <jh@suse.cz> | 2002-10-15 22:09:32 +0200 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2002-10-15 20:09:32 +0000 |
commit | 74f6d07186e73e97aa4779ec7c996fef36a8011b (patch) | |
tree | bc3d70ebc5cce784e8df2e038b15e122a59d48f4 /gcc/expr.c | |
parent | 20a5fa3d0cc8053db6dae5441ea60ee497ed0eea (diff) | |
download | gcc-74f6d07186e73e97aa4779ec7c996fef36a8011b.zip gcc-74f6d07186e73e97aa4779ec7c996fef36a8011b.tar.gz gcc-74f6d07186e73e97aa4779ec7c996fef36a8011b.tar.bz2 |
* expr.c (do_tablejump): Fix typo in my previous commit.
From-SVN: r58179
Diffstat (limited to 'gcc/expr.c')
-rw-r--r-- | gcc/expr.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -10942,8 +10942,8 @@ do_tablejump (index, mode, range, table_label, default_label) { rtx temp, vector; - if (range > cfun->max_jumptable_ents) - cfun->max_jumptable_ents = range; + if (INTVAL (range) > cfun->max_jumptable_ents) + cfun->max_jumptable_ents = INTVAL (range); /* Do an unsigned comparison (in the proper mode) between the index expression and the value which represents the length of the range. |