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
f422e9a0
Commit
f422e9a0
authored
Nov 19, 1997
by
Michael Meissner
Committed by
Michael Meissner
Nov 19, 1997
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Size filler array smaller if STACK_SIZE is defined.
From-SVN: r16582
parent
bd2a82a6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
0 deletions
+9
-0
gcc/testsuite/gcc.c-torture/ChangeLog
+5
-0
gcc/testsuite/gcc.c-torture/execute/950221-1.c
+4
-0
No files found.
gcc/testsuite/gcc.c-torture/ChangeLog
View file @
f422e9a0
Wed Nov 19 14:27:04 1997 Michael Meissner <meissner@cygnus.com>
* execute/950221-1.c (filler): If STACK_SIZE is defined, use that
to size the filler array.
Wed Sep 3 17:29:35 1997 Bob Manson <manson@charmed.cygnus.com>
Wed Sep 3 17:29:35 1997 Bob Manson <manson@charmed.cygnus.com>
* execute/ieee/ieee.exp: Check for ieee_multilib_flags target
* execute/ieee/ieee.exp: Check for ieee_multilib_flags target
...
...
gcc/testsuite/gcc.c-torture/execute/950221-1.c
View file @
f422e9a0
...
@@ -5,7 +5,11 @@ struct parsefile
...
@@ -5,7 +5,11 @@ struct parsefile
};
};
struct
parsefile
basepf
;
struct
parsefile
basepf
;
struct
parsefile
*
parsefile
=
&
basepf
;
struct
parsefile
*
parsefile
=
&
basepf
;
#ifdef STACK_SIZE
int
filler
[
STACK_SIZE
/
(
2
*
sizeof
(
int
))];
#else
int
filler
[
0x3000
];
int
filler
[
0x3000
];
#endif
int
el
;
int
el
;
char
*
char
*
...
...
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