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
551064b1
Commit
551064b1
authored
Jul 18, 1993
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(fold): Handle CONJ_EXPR.
From-SVN: r4938
parent
cba389cd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
0 deletions
+24
-0
gcc/fold-const.c
+24
-0
No files found.
gcc/fold-const.c
View file @
551064b1
...
@@ -3485,6 +3485,30 @@ fold (expr)
...
@@ -3485,6 +3485,30 @@ fold (expr)
return
build1
(
ABS_EXPR
,
type
,
TREE_OPERAND
(
arg0
,
0
));
return
build1
(
ABS_EXPR
,
type
,
TREE_OPERAND
(
arg0
,
0
));
return
t
;
return
t
;
case
CONJ_EXPR
:
if
(
TREE_CODE
(
TREE_TYPE
(
arg0
))
!=
COMPLEX_TYPE
)
return
arg0
;
else
if
(
TREE_CODE
(
arg0
)
==
COMPLEX_EXPR
)
return
build
(
COMPLEX_EXPR
,
TREE_TYPE
(
arg0
),
TREE_OPERAND
(
arg0
,
0
),
fold
(
build1
(
NEGATE_EXPR
,
TREE_TYPE
(
TREE_TYPE
(
arg0
)),
TREE_OPERAND
(
arg0
,
1
))));
else
if
(
TREE_CODE
(
arg0
)
==
COMPLEX_CST
)
return
build_complex
(
TREE_OPERAND
(
arg0
,
0
),
fold
(
build1
(
NEGATE_EXPR
,
TREE_TYPE
(
TREE_TYPE
(
arg0
)),
TREE_OPERAND
(
arg0
,
1
))));
else
if
(
TREE_CODE
(
arg0
)
==
PLUS_EXPR
||
TREE_CODE
(
arg0
)
==
MINUS_EXPR
)
return
fold
(
build
(
TREE_CODE
(
arg0
),
type
,
fold
(
build1
(
CONJ_EXPR
,
type
,
TREE_OPERAND
(
arg0
,
0
))),
fold
(
build1
(
CONJ_EXPR
,
type
,
TREE_OPERAND
(
arg0
,
1
)))));
else
if
(
TREE_CODE
(
arg0
)
==
CONJ_EXPR
)
return
TREE_OPERAND
(
arg0
,
0
);
return
t
;
case
BIT_NOT_EXPR
:
case
BIT_NOT_EXPR
:
if
(
wins
)
if
(
wins
)
{
{
...
...
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