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
9a509bfe
Commit
9a509bfe
authored
May 04, 1992
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
From-SVN: r880
parent
0e51ef9b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
8 deletions
+5
-8
gcc/c-decl.c
+5
-8
No files found.
gcc/c-decl.c
View file @
9a509bfe
...
...
@@ -2568,17 +2568,9 @@ init_decl_processing ()
temp
=
builtin_function
(
"abort"
,
void_ftype_any
,
NOT_BUILT_IN
,
0
);
TREE_THIS_VOLATILE
(
temp
)
=
1
;
TREE_SIDE_EFFECTS
(
temp
)
=
1
;
#if 0
/* Suppress error if redefined as a non-function. */
DECL_BUILT_IN_NONANSI (temp) = 1;
#endif
temp
=
builtin_function
(
"exit"
,
void_ftype_any
,
NOT_BUILT_IN
,
0
);
TREE_THIS_VOLATILE
(
temp
)
=
1
;
TREE_SIDE_EFFECTS
(
temp
)
=
1
;
#if 0
/* Suppress error if redefined as a non-function. */
DECL_BUILT_IN_NONANSI (temp) = 1;
#endif
}
#if 0
...
...
@@ -2618,6 +2610,11 @@ builtin_function (name, type, function_code, library_name)
tree
decl
=
build_decl
(
FUNCTION_DECL
,
get_identifier
(
name
),
type
);
TREE_EXTERNAL
(
decl
)
=
1
;
TREE_PUBLIC
(
decl
)
=
1
;
/* If -traditional, permit redefining a builtin function any way you like.
(Though really, if the program redefines these functions,
it probably won't work right unless compiled with -fno-builtin.) */
if
(
flag_traditional
&&
name
[
0
]
!=
'_'
)
DECL_BUILT_IN_NONANSI
(
decl
)
=
1
;
if
(
library_name
)
DECL_ASSEMBLER_NAME
(
decl
)
=
get_identifier
(
library_name
);
make_decl_rtl
(
decl
,
0
,
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