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
4abfe235
Commit
4abfe235
authored
Jul 02, 1998
by
Nick Clifton
Committed by
Nick Clifton
Jul 02, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Define MUST_PASS_IN_STACK to override default. (Fixes testsuite/gcc.c-execute/strct-stdarg-1.c)
From-SVN: r20908
parent
356985ca
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
0 deletions
+11
-0
gcc/ChangeLog
+5
-0
gcc/config/m32r/m32r.h
+6
-0
No files found.
gcc/ChangeLog
View file @
4abfe235
Thu Jul 2 17:41:14 1998 Nick Clifton <nickc@cygnus.com>
* config/m32r/m32r.h (MUST_PASS_IN_STACK): Override default
version.
Thu Jul 2 14:34:48 1998 David Edelsohn <edelsohn@mhpcc.edu>
Thu Jul 2 14:34:48 1998 David Edelsohn <edelsohn@mhpcc.edu>
* expr.h (STACK_SIZE_MODE): New macro.
* expr.h (STACK_SIZE_MODE): New macro.
...
...
gcc/config/m32r/m32r.h
View file @
4abfe235
...
@@ -843,6 +843,12 @@ M32R_STACK_ALIGN (current_function_outgoing_args_size)
...
@@ -843,6 +843,12 @@ M32R_STACK_ALIGN (current_function_outgoing_args_size)
SIZE is the number of bytes of arguments passed on the stack. */
SIZE is the number of bytes of arguments passed on the stack. */
#define RETURN_POPS_ARGS(DECL, FUNTYPE, SIZE) 0
#define RETURN_POPS_ARGS(DECL, FUNTYPE, SIZE) 0
/* Nonzero if we do not know how to pass TYPE solely in registers. */
#define MUST_PASS_IN_STACK(MODE,TYPE) \
((TYPE) != 0 \
&& (TREE_CODE (TYPE_SIZE (TYPE)) != INTEGER_CST \
|| TREE_ADDRESSABLE (TYPE)))
/* Define a data type for recording info about an argument list
/* Define a data type for recording info about an argument list
during the scan of that argument list. This data type should
during the scan of that argument list. This data type should
hold all necessary information about the function itself
hold all necessary information about the function itself
...
...
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