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
cde68236
Commit
cde68236
authored
Jan 20, 2005
by
Kazu Hirata
Committed by
Kazu Hirata
Jan 20, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* tree-cfg.c (tree_verify_flow_info): Fix a typo.
From-SVN: r93995
parent
9d953276
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletions
+3
-1
gcc/ChangeLog
+2
-0
gcc/tree-cfg.c
+1
-1
No files found.
gcc/ChangeLog
View file @
cde68236
...
@@ -3,6 +3,8 @@
...
@@ -3,6 +3,8 @@
* tree-cfg.c (tree_verify_flow_info): Check that a nonlocal
* tree-cfg.c (tree_verify_flow_info): Check that a nonlocal
label is first in a sequence of labels.
label is first in a sequence of labels.
* tree-cfg.c (tree_verify_flow_info): Fix a typo.
2005-01-20 Janis Johnson <janis187@us.ibm.com>
2005-01-20 Janis Johnson <janis187@us.ibm.com>
Giovanni Bajo <giovannibajo@gcc.gnu.org>
Giovanni Bajo <giovannibajo@gcc.gnu.org>
...
...
gcc/tree-cfg.c
View file @
cde68236
...
@@ -3610,7 +3610,7 @@ tree_verify_flow_info (void)
...
@@ -3610,7 +3610,7 @@ tree_verify_flow_info (void)
if
(
prev_stmt
&&
DECL_NONLOCAL
(
LABEL_EXPR_LABEL
(
stmt
)))
if
(
prev_stmt
&&
DECL_NONLOCAL
(
LABEL_EXPR_LABEL
(
stmt
)))
{
{
error
(
"Nonlocal label %s is not first "
error
(
"Nonlocal label %s is not first "
"in a sequence of labels in bb %d"
"
,
"in a sequence of labels in bb %d"
,
IDENTIFIER_POINTER
(
DECL_NAME
(
LABEL_EXPR_LABEL
(
stmt
))),
IDENTIFIER_POINTER
(
DECL_NAME
(
LABEL_EXPR_LABEL
(
stmt
))),
bb
->
index
);
bb
->
index
);
err
=
1
;
err
=
1
;
...
...
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