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
361ea006
Commit
361ea006
authored
Mar 26, 2002
by
Richard Henderson
Committed by
Richard Henderson
Mar 26, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* expr.h (ADD_PARM_SIZE): One more convert for INC.
From-SVN: r51409
parent
1de38a88
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletions
+6
-1
gcc/ChangeLog
+5
-0
gcc/expr.h
+1
-1
No files found.
gcc/ChangeLog
View file @
361ea006
2002-03-26 Richard Henderson <rth@redhat.com>
* expr.h (ADD_PARM_SIZE): One more convert for INC.
2002-03-26 Phil Edwards <pme@gcc.gnu.org>
2002-03-26 Phil Edwards <pme@gcc.gnu.org>
* gcc.c (cpp_options): Preserve relative ordering of -pedantic
* gcc.c (cpp_options): Preserve relative ordering of -pedantic
...
@@ -5,6 +9,7 @@
...
@@ -5,6 +9,7 @@
(cc1_options): Likewise.
(cc1_options): Likewise.
2002-03-26 Hans Boehm <Hans_Boehm@hp.com>
2002-03-26 Hans Boehm <Hans_Boehm@hp.com>
* config/ia64/linux.h (MD_FALLBACK_FRAME_STATE_FOR):
* config/ia64/linux.h (MD_FALLBACK_FRAME_STATE_FOR):
Restore more of the signal context. Set no_reg_stack_frame.
Restore more of the signal context. Set no_reg_stack_frame.
* config/ia64/unwind-ia64.c (unw_state_record):
* config/ia64/unwind-ia64.c (unw_state_record):
...
...
gcc/expr.h
View file @
361ea006
...
@@ -81,7 +81,7 @@ do { \
...
@@ -81,7 +81,7 @@ do { \
if (host_integerp (inc, 0)) \
if (host_integerp (inc, 0)) \
(TO).constant += tree_low_cst (inc, 0); \
(TO).constant += tree_low_cst (inc, 0); \
else if ((TO).var == 0) \
else if ((TO).var == 0) \
(TO).var =
inc;
\
(TO).var =
convert (ssizetype, inc);
\
else \
else \
(TO).var = size_binop (PLUS_EXPR, (TO).var, \
(TO).var = size_binop (PLUS_EXPR, (TO).var, \
convert (ssizetype, inc)); \
convert (ssizetype, inc)); \
...
...
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