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
ed9cef22
Commit
ed9cef22
authored
Mar 13, 2005
by
Kazu Hirata
Committed by
Kazu Hirata
Mar 13, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* tree-cfg.c (group_case_labels): Remove local variable type.
From-SVN: r96374
parent
30a6aaed
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
gcc/ChangeLog
+2
-0
gcc/tree-cfg.c
+1
-2
No files found.
gcc/ChangeLog
View file @
ed9cef22
...
...
@@ -23,6 +23,8 @@
* lambda-code.c (lambda_compute_auxillary_space): Remove local
variable determinant.
* tree-cfg.c (group_case_labels): Remove local variable type.
2005-03-13 Andy Hutchinson <HutchinsonAndy@netscape.net>
PR target/18251
...
...
gcc/tree-cfg.c
View file @
ed9cef22
...
...
@@ -1189,7 +1189,7 @@ group_case_labels (void)
i
=
0
;
while
(
i
<
old_size
-
1
)
{
tree
base_case
,
base_label
,
base_high
,
type
;
tree
base_case
,
base_label
,
base_high
;
base_case
=
TREE_VEC_ELT
(
labels
,
i
);
gcc_assert
(
base_case
);
...
...
@@ -1205,7 +1205,6 @@ group_case_labels (void)
continue
;
}
type
=
TREE_TYPE
(
CASE_LOW
(
base_case
));
base_high
=
CASE_HIGH
(
base_case
)
?
CASE_HIGH
(
base_case
)
:
CASE_LOW
(
base_case
);
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