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
2033a41a
Commit
2033a41a
authored
Mar 17, 1997
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(RETURN_POPS_ARGS): Make sure FUDECL is non-nil before we try to use it.
From-SVN: r13729
parent
a6096a27
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
7 deletions
+7
-7
gcc/config/gmicro/gmicro.h
+2
-2
gcc/config/m68k/m68k.h
+1
-1
gcc/config/ns32k/ns32k.h
+2
-2
gcc/config/pyr/pyr.h
+2
-2
No files found.
gcc/config/gmicro/gmicro.h
View file @
2033a41a
/* Definitions of target machine for GNU compiler. Gmicro (TRON) version.
Copyright (C) 1987,
1988, 1989, 1995, 1996
Free Software Foundation, Inc.
Copyright (C) 1987,
88, 89, 95, 96, 1997
Free Software Foundation, Inc.
Contributed by Masanobu Yuhara, Fujitsu Laboratories LTD.
(yuhara@flab.fujitsu.co.jp)
...
...
@@ -460,7 +460,7 @@ extern enum reg_class regno_reg_class[];
for the Gmicro. The option name may be changed in the future. */
#define RETURN_POPS_ARGS(FUNDECL,FUNTYPE,SIZE) \
((TARGET_RTD &&
TREE_CODE (FUNDECL) != IDENTIFIER_NODE
\
((TARGET_RTD &&
(!(FUNDECL) || TREE_CODE (FUNDECL) != IDENTIFIER_NODE)
\
&& (TYPE_ARG_TYPES (FUNTYPE) == 0 \
|| (TREE_VALUE (tree_last (TYPE_ARG_TYPES (FUNTYPE))) \
== void_type_node))) \
...
...
gcc/config/m68k/m68k.h
View file @
2033a41a
...
...
@@ -824,7 +824,7 @@ extern enum reg_class regno_reg_class[];
the caller must always pop the args. */
#define RETURN_POPS_ARGS(FUNDECL,FUNTYPE,SIZE) \
((TARGET_RTD &&
TREE_CODE (FUNDECL) != IDENTIFIER_NODE
\
((TARGET_RTD &&
(!(FUNDECL) || TREE_CODE (FUNDECL) != IDENTIFIER_NODE)
\
&& (TYPE_ARG_TYPES (FUNTYPE) == 0 \
|| (TREE_VALUE (tree_last (TYPE_ARG_TYPES (FUNTYPE))) \
== void_type_node))) \
...
...
gcc/config/ns32k/ns32k.h
View file @
2033a41a
/* Definitions of target machine for GNU compiler. NS32000 version.
Copyright (C) 1988,
1993, 1994, 1995, 1996
Free Software Foundation, Inc.
Copyright (C) 1988,
93, 94, 95, 96, 1997
Free Software Foundation, Inc.
Contributed by Michael Tiemann (tiemann@cygnus.com)
This file is part of GNU CC.
...
...
@@ -405,7 +405,7 @@ enum reg_class { NO_REGS, GENERAL_REGS, FLOAT_REGS, GEN_AND_FP_REGS,
the caller must always pop the args. */
#define RETURN_POPS_ARGS(FUNDECL,FUNTYPE,SIZE) \
((TARGET_RTD &&
TREE_CODE (FUNDECL) != IDENTIFIER_NODE
\
((TARGET_RTD &&
(!(FUNDECL) || TREE_CODE (FUNDECL) != IDENTIFIER_NODE)
\
&& (TYPE_ARG_TYPES (FUNTYPE) == 0 \
|| (TREE_VALUE (tree_last (TYPE_ARG_TYPES (FUNTYPE))) \
== void_type_node))) \
...
...
gcc/config/pyr/pyr.h
View file @
2033a41a
/* Definitions of target machine parameters for GNU compiler,
for Pyramid 90x, 9000, and MIServer Series.
Copyright (C) 1989, 1995, 1996 Free Software Foundation, Inc.
Copyright (C) 1989, 1995, 1996
, 1997
Free Software Foundation, Inc.
This file is part of GNU CC.
...
...
@@ -495,7 +495,7 @@ enum reg_class { NO_REGS, ALL_REGS, LIM_REG_CLASSES };
We may nevertheless provide this as an option. */
#define RETURN_POPS_ARGS(FUNDECL,FUNTYPE,SIZE) \
((TARGET_RETD &&
TREE_CODE (FUNDECL) != IDENTIFIER_NODE
\
((TARGET_RETD &&
(!(FUNDECL) || TREE_CODE (FUNDECL) != IDENTIFIER_NODE)
\
&& (TYPE_ARG_TYPES (FUNTYPE) == 0 \
|| (TREE_VALUE (tree_last (TYPE_ARG_TYPES (FUNTYPE))) \
== void_type_node))) \
...
...
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