Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
74f6d071
Commit
74f6d071
authored
Oct 15, 2002
by
Jan Hubicka
Committed by
Jan Hubicka
Oct 15, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* expr.c (do_tablejump): Fix typo in my previous commit.
From-SVN: r58179
parent
20a5fa3d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
gcc/ChangeLog
+4
-0
gcc/expr.c
+2
-2
No files found.
gcc/ChangeLog
View file @
74f6d071
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
}.
...
...
gcc/expr.c
View file @
74f6d071
...
@@ -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.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment