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
f2f81d57
Commit
f2f81d57
authored
Mar 22, 2011
by
Eric Botcazou
Committed by
Eric Botcazou
Mar 22, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gimplify.c (gimplify_cond_expr): Gimplify COMPOUND_EXPR conditions.
From-SVN: r171282
parent
ab081dd6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
0 deletions
+9
-0
gcc/ChangeLog
+4
-0
gcc/gimplify.c
+5
-0
No files found.
gcc/ChangeLog
View file @
f2f81d57
2011-03-22 Eric Botcazou <ebotcazou@adacore.com>
* gimplify.c (gimplify_cond_expr): Gimplify COMPOUND_EXPR conditions.
2011-03-22 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
* config/s390/s390.c (s390_delegitimize_address): Fix offset
...
...
gcc/gimplify.c
View file @
f2f81d57
...
...
@@ -2992,6 +2992,11 @@ gimplify_cond_expr (tree *expr_p, gimple_seq *pre_p, fallback_t fallback)
return
GS_ALL_DONE
;
}
/* Remove any COMPOUND_EXPR so the following cases will be caught. */
STRIP_TYPE_NOPS
(
TREE_OPERAND
(
expr
,
0
));
if
(
TREE_CODE
(
TREE_OPERAND
(
expr
,
0
))
==
COMPOUND_EXPR
)
gimplify_compound_expr
(
&
TREE_OPERAND
(
expr
,
0
),
pre_p
,
true
);
/* Make sure the condition has BOOLEAN_TYPE. */
TREE_OPERAND
(
expr
,
0
)
=
gimple_boolify
(
TREE_OPERAND
(
expr
,
0
));
...
...
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