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
0cc1b879
Commit
0cc1b879
authored
Dec 14, 2004
by
Kazu Hirata
Committed by
Kazu Hirata
Dec 14, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* expr.h (expand_modifier): Define EXPAND_STACK_PARM as 1.
From-SVN: r92140
parent
e8c66fe0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
+6
-3
gcc/ChangeLog
+4
-0
gcc/expr.h
+2
-3
No files found.
gcc/ChangeLog
View file @
0cc1b879
2004
-
12
-
14
Kazu
Hirata
<
kazu
@
cs
.
umass
.
edu
>
*
expr
.
h
(
expand_modifier
):
Define
EXPAND_STACK_PARM
as
1.
2004
-
12
-
14
Richard
Earnshaw
<
rearnsha
@
arm
.
com
>
PR
target
/
18973
...
...
gcc/expr.h
View file @
0cc1b879
...
...
@@ -41,8 +41,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
/* This is the 4th arg to `expand_expr'.
EXPAND_STACK_PARM means we are possibly expanding a call param onto
the stack. Choosing a value of 2 isn't special; It just allows
some code optimization in store_expr.
the stack.
EXPAND_SUM means it is ok to return a PLUS rtx or MULT rtx.
EXPAND_INITIALIZER is similar but also record any labels on forced_labels.
EXPAND_CONST_ADDRESS means it is ok to return a MEM whose address
...
...
@@ -50,7 +49,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
EXPAND_WRITE means we are only going to write to the resulting rtx.
EXPAND_MEMORY means we are interested in a memory result, even if
the memory is constant and we could have propagated a constant value. */
enum
expand_modifier
{
EXPAND_NORMAL
=
0
,
EXPAND_STACK_PARM
=
2
,
EXPAND_SUM
,
enum
expand_modifier
{
EXPAND_NORMAL
=
0
,
EXPAND_STACK_PARM
,
EXPAND_SUM
,
EXPAND_CONST_ADDRESS
,
EXPAND_INITIALIZER
,
EXPAND_WRITE
,
EXPAND_MEMORY
};
...
...
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