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
e238ccac
Commit
e238ccac
authored
Sep 18, 2005
by
Jan Hubicka
Committed by
Jan Hubicka
Sep 18, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* calls.c (flags_from_decl_or_type): Do not set ECF_LIBCALL_BLOCK.
From-SVN: r104405
parent
f7952e0a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
gcc/ChangeLog
+4
-0
gcc/calls.c
+3
-3
No files found.
gcc/ChangeLog
View file @
e238ccac
2005
-
09
-
18
Jan
Hubicka
<
jh
@suse
.
cz
>
*
calls
.
c
(
flags_from_decl_or_type
)
:
Do
not
set
ECF_LIBCALL_BLOCK
.
2005
-
09
-
18
Eric
Botcazou
<
ebotcazou
@adacore
.
com
>
*
varasm
.
c
(
output_constant
)
:
Do
not
abort
on
conversions
to
union
...
...
gcc/calls.c
View file @
e238ccac
...
...
@@ -582,7 +582,7 @@ flags_from_decl_or_type (tree exp)
/* The function exp may have the `pure' attribute. */
if
(
DECL_IS_PURE
(
exp
))
flags
|=
ECF_PURE
|
ECF_LIBCALL_BLOCK
;
flags
|=
ECF_PURE
;
if
(
DECL_IS_NOVOPS
(
exp
))
flags
|=
ECF_NOVOPS
;
...
...
@@ -591,7 +591,7 @@ flags_from_decl_or_type (tree exp)
flags
|=
ECF_NOTHROW
;
if
(
TREE_READONLY
(
exp
)
&&
!
TREE_THIS_VOLATILE
(
exp
))
flags
|=
ECF_
LIBCALL_BLOCK
|
ECF_
CONST
;
flags
|=
ECF_CONST
;
flags
=
special_function_p
(
exp
,
flags
);
}
...
...
@@ -606,7 +606,7 @@ flags_from_decl_or_type (tree exp)
if
(
TREE_CODE
(
type
)
==
FUNCTION_TYPE
&&
TYPE_RETURNS_STACK_DEPRESSED
(
type
))
{
flags
|=
ECF_SP_DEPRESSED
;
flags
&=
~
(
ECF_PURE
|
ECF_CONST
|
ECF_LIBCALL_BLOCK
);
flags
&=
~
(
ECF_PURE
|
ECF_CONST
);
}
return
flags
;
...
...
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