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
5d3fe1fe
Commit
5d3fe1fe
authored
Apr 06, 1994
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(function_cannot_inline_p): Use current_function_varargs.
From-SVN: r6986
parent
91ab952c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
3 deletions
+1
-3
gcc/integrate.c
+1
-3
No files found.
gcc/integrate.c
View file @
5d3fe1fe
...
@@ -93,9 +93,7 @@ function_cannot_inline_p (fndecl)
...
@@ -93,9 +93,7 @@ function_cannot_inline_p (fndecl)
message about that if `inline' is specified. This code
message about that if `inline' is specified. This code
it put in to catch the volunteers. */
it put in to catch the volunteers. */
if
((
last
&&
TREE_VALUE
(
last
)
!=
void_type_node
)
if
((
last
&&
TREE_VALUE
(
last
)
!=
void_type_node
)
||
(
DECL_ARGUMENTS
(
fndecl
)
&&
DECL_NAME
(
DECL_ARGUMENTS
(
fndecl
))
||
current_function_varargs
)
&&
!
strcmp
(
IDENTIFIER_POINTER
(
DECL_NAME
(
DECL_ARGUMENTS
(
fndecl
))),
"__builtin_va_alist"
)))
return
"varargs function cannot be inline"
;
return
"varargs function cannot be inline"
;
if
(
current_function_calls_alloca
)
if
(
current_function_calls_alloca
)
...
...
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