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
13837058
Commit
13837058
authored
Apr 22, 1992
by
Tom Wood
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
From-SVN: r815
parent
078fb2a4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
gcc/fold-const.c
+5
-3
No files found.
gcc/fold-const.c
View file @
13837058
...
...
@@ -3486,7 +3486,7 @@ fold (expr)
{
case
0
:
/* Always false. */
return
convert
(
type
,
integer_zero_node
);
return
omit_one_operand
(
type
,
integer_zero_node
,
arg0
);
case
1
:
code
=
LT_EXPR
;
break
;
...
...
@@ -3507,10 +3507,12 @@ fold (expr)
break
;
case
7
:
/* Always true. */
return
convert
(
type
,
integer_one_node
);
return
omit_one_operand
(
type
,
integer_one_node
,
arg0
);
}
return
fold
(
build
(
code
,
type
,
cval1
,
cval2
));
return
omit_one_operand
(
type
,
fold
(
build
(
code
,
type
,
cval1
,
cval2
)),
arg0
);
}
}
}
...
...
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