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
bd83d0ac
Commit
bd83d0ac
authored
Jul 17, 1997
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(flag_stack_check): New variable.
(f_options): Add "stack-check". From-SVN: r14473
parent
5e4ef18a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
gcc/toplev.c
+5
-0
No files found.
gcc/toplev.c
View file @
bd83d0ac
...
...
@@ -601,6 +601,10 @@ int flag_gnu_linker = 1;
/* Tag all structures with __attribute__(packed) */
int
flag_pack_struct
=
0
;
/* Emit code to check for stack overflow; also may cause large objects
to be allocated dynamically. */
int
flag_stack_check
;
/* Table of language-independent -f options.
STRING is the option name. VARIABLE is the address of the variable.
ON_VALUE is the value to store in VARIABLE
...
...
@@ -655,6 +659,7 @@ struct { char *string; int *variable; int on_value;} f_options[] =
{
"verbose-asm"
,
&
flag_verbose_asm
,
1
},
{
"gnu-linker"
,
&
flag_gnu_linker
,
1
},
{
"pack-struct"
,
&
flag_pack_struct
,
1
},
{
"stack-check"
,
&
flag_stack_check
,
1
},
{
"bytecode"
,
&
output_bytecode
,
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