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
12a41c48
Commit
12a41c48
authored
Mar 18, 2000
by
Richard Henderson
Committed by
Richard Henderson
Mar 18, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* flow.c (make_edges): Use INTVAL to access REG_EH_REGION value.
From-SVN: r32621
parent
cbbf65e0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletions
+5
-1
gcc/ChangeLog
+4
-0
gcc/flow.c
+1
-1
No files found.
gcc/ChangeLog
View file @
12a41c48
2000
-
03
-
18
Richard
Henderson
<
rth
@cygnus
.
com
>
2000
-
03
-
18
Richard
Henderson
<
rth
@cygnus
.
com
>
*
flow
.
c
(
make_edges
)
:
Use
INTVAL
to
access
REG_EH_REGION
value
.
2000
-
03
-
18
Richard
Henderson
<
rth
@cygnus
.
com
>
*
i386
.
c
(
call_insn_operand
)
:
Always
allow
SYMBOL_REF
,
*
i386
.
c
(
call_insn_operand
)
:
Always
allow
SYMBOL_REF
,
care
for
HALF_PIC_P
.
care
for
HALF_PIC_P
.
(
expander_call_insn_operand
)
:
Remove
.
(
expander_call_insn_operand
)
:
Remove
.
...
...
gcc/flow.c
View file @
12a41c48
...
@@ -1031,7 +1031,7 @@ make_edges (label_value_list)
...
@@ -1031,7 +1031,7 @@ make_edges (label_value_list)
/* We do know that a REG_EH_REGION note with a value less
/* We do know that a REG_EH_REGION note with a value less
than 0 is guaranteed not to perform a non-local goto. */
than 0 is guaranteed not to perform a non-local goto. */
rtx
note
=
find_reg_note
(
insn
,
REG_EH_REGION
,
NULL_RTX
);
rtx
note
=
find_reg_note
(
insn
,
REG_EH_REGION
,
NULL_RTX
);
if
(
!
note
||
XINT
(
XEXP
(
note
,
0
),
0
)
>=
0
)
if
(
!
note
||
INTVAL
(
XEXP
(
note
,
0
)
)
>=
0
)
for
(
x
=
nonlocal_goto_handler_labels
;
x
;
x
=
XEXP
(
x
,
1
))
for
(
x
=
nonlocal_goto_handler_labels
;
x
;
x
=
XEXP
(
x
,
1
))
make_label_edge
(
edge_cache
,
bb
,
XEXP
(
x
,
0
),
make_label_edge
(
edge_cache
,
bb
,
XEXP
(
x
,
0
),
EDGE_ABNORMAL
|
EDGE_ABNORMAL_CALL
);
EDGE_ABNORMAL
|
EDGE_ABNORMAL_CALL
);
...
...
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