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
9fb60a0d
Commit
9fb60a0d
authored
Oct 25, 2001
by
Richard Kenner
Committed by
Richard Kenner
Oct 25, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* stmt.c (expand_end_case): Remove orig_minval and use tree_low_cst.
From-SVN: r46486
parent
2ea792c2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
6 deletions
+8
-6
gcc/ChangeLog
+4
-0
gcc/stmt.c
+4
-6
No files found.
gcc/ChangeLog
View file @
9fb60a0d
Thu
Oct
25
08
:
46
:
06
2001
Richard
Kenner
<
kenner
@vlsi1
.
ultra
.
nyu
.
edu
>
*
stmt
.
c
(
expand_end_case
)
:
Remove
orig_minval
and
use
tree_low_cst
.
2001
-
10
-
24
Christopher
Faylor
<
cgf
@redhat
.
com
>
*
config
/
i386
/
cygwin
.
h
:
Use
proper
path
for
mingw
crt
files
when
...
...
gcc/stmt.c
View file @
9fb60a0d
...
...
@@ -5317,7 +5317,7 @@ void
expand_end_case
(
orig_index
)
tree
orig_index
;
{
tree
minval
=
NULL_TREE
,
maxval
=
NULL_TREE
,
range
=
NULL_TREE
,
orig_minval
;
tree
minval
=
NULL_TREE
,
maxval
=
NULL_TREE
,
range
=
NULL_TREE
;
rtx
default_label
=
0
;
struct
case_node
*
n
;
unsigned
int
count
;
...
...
@@ -5417,8 +5417,6 @@ expand_end_case (orig_index)
count
++
;
}
orig_minval
=
minval
;
/* Compute span of values. */
if
(
count
!=
0
)
range
=
fold
(
build
(
MINUS_EXPR
,
index_type
,
maxval
,
minval
));
...
...
@@ -5559,14 +5557,14 @@ expand_end_case (orig_index)
for
(
n
=
thiscase
->
data
.
case_stmt
.
case_list
;
n
;
n
=
n
->
right
)
{
HOST_WIDE_INT
i
=
TREE_INT_CST_LOW
(
n
->
low
)
-
TREE_INT_CST_LOW
(
orig_minval
);
=
tree_low_cst
(
n
->
low
,
0
)
-
tree_low_cst
(
minval
,
0
);
while
(
1
)
{
labelvec
[
i
]
=
gen_rtx_LABEL_REF
(
Pmode
,
label_rtx
(
n
->
code_label
));
if
(
i
+
TREE_INT_CST_LOW
(
orig_minval
)
==
TREE_INT_CST_LOW
(
n
->
high
))
if
(
i
+
tree_low_cst
(
minval
,
0
)
==
tree_low_cst
(
n
->
high
,
0
))
break
;
i
++
;
}
...
...
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