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
0c2fdcdf
Commit
0c2fdcdf
authored
Mar 20, 2002
by
David Edelsohn
Committed by
David Edelsohn
Mar 19, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* fold-const.c (fold): Delete #if 0 ARRAY_REF case.
From-SVN: r51061
parent
15b5aef3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
19 deletions
+2
-19
gcc/ChangeLog
+2
-1
gcc/fold-const.c
+0
-18
No files found.
gcc/ChangeLog
View file @
0c2fdcdf
...
...
@@ -58,6 +58,7 @@
* expr.c (expand_expr): Sign-extend CONST_INT generated from
TREE_STRING_POINTER.
* fold-const.c (fold): Delete #if 0 ARRAY_REF case.
Tue Mar 19 14:12:32 2002 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
...
...
@@ -1619,7 +1620,7 @@ Fri Mar 1 20:59:14 CET 2002 Jan Hubicka <jh@suse.cz>
* config/rs6000/rs6000.h (HANDLE_PRAGMA_PACK): Delete.
* config/rs6000/darwin.h (HANDLE_SYSV_PRAGMA): Define.
* config/rs6000/xcoff.h (COLLET_EXPORT_LIST): Delete.
* config/rs6000/xcoff.h (COLLE
C
T_EXPORT_LIST): Delete.
2002-03-01 Kazu Hirata <kazu@hxi.com>
...
...
gcc/fold-const.c
View file @
0c2fdcdf
...
...
@@ -4781,24 +4781,6 @@ fold (expr)
TREE_OPERAND
(
TREE_OPERAND
(
t
,
0
),
0
));
return
t
;
#if 0 /* This loses on &"foo"[0]. */
case ARRAY_REF:
{
int i;
/* Fold an expression like: "foo"[2] */
if (TREE_CODE (arg0) == STRING_CST
&& TREE_CODE (arg1) == INTEGER_CST
&& compare_tree_int (arg1, TREE_STRING_LENGTH (arg0)) < 0)
{
t = build_int_2 (TREE_STRING_POINTER (arg0)[TREE_INT_CST_LOW (arg))], 0);
TREE_TYPE (t) = TREE_TYPE (TREE_TYPE (arg0));
force_fit_type (t, 0);
}
}
return t;
#endif /* 0 */
case
COMPONENT_REF
:
if
(
TREE_CODE
(
arg0
)
==
CONSTRUCTOR
)
{
...
...
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