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
897aa57f
Commit
897aa57f
authored
May 11, 2001
by
Mark Mitchell
Committed by
Mark Mitchell
May 11, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* optabs.c (emit_libcall_block): Don't mark calls as CONST_CALL_P.
From-SVN: r41963
parent
281c45f6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
gcc/ChangeLog
+4
-0
gcc/optabs.c
+1
-2
No files found.
gcc/ChangeLog
View file @
897aa57f
2001
-
05
-
11
Mark
Mitchell
<
mark
@codesourcery
.
com
>
*
optabs
.
c
(
emit_libcall_block
)
:
Don
'
t
mark
calls
as
CONST_CALL_P
.
2001
-
05
-
11
Neil
Booth
<
neil
@daikokuya
.
demon
.
co
.
uk
>
*
c
-
common
.
c
(
finish_label_expr
)
:
New
function
,
lifted
from
...
...
gcc/optabs.c
View file @
897aa57f
...
...
@@ -2826,14 +2826,13 @@ emit_libcall_block (insns, target, result, equiv)
/* look for any CALL_INSNs in this sequence, and attach a REG_EH_REGION
reg note to indicate that this call cannot throw or execute a nonlocal
goto (unless there is already a REG_EH_REGION note, in which case
we update it).
Also set the CONST_CALL_P flag.
*/
we update it). */
for
(
insn
=
insns
;
insn
;
insn
=
NEXT_INSN
(
insn
))
if
(
GET_CODE
(
insn
)
==
CALL_INSN
)
{
rtx
note
=
find_reg_note
(
insn
,
REG_EH_REGION
,
NULL_RTX
);
CONST_CALL_P
(
insn
)
=
1
;
if
(
note
!=
0
)
XEXP
(
note
,
0
)
=
GEN_INT
(
-
1
);
else
...
...
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