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
f40421ce
Commit
f40421ce
authored
Dec 10, 1997
by
Jeff Law
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* combine.c (simplify_rtx, case ABS): Do nothing for ASM_OPERANDS.
From-SVN: r17038
parent
8587487b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletions
+8
-1
gcc/ChangeLog
+5
-1
gcc/combine.c
+3
-0
No files found.
gcc/ChangeLog
View file @
f40421ce
Wed Dec 10 18:14:10 1997 Jeffrey A Law (law@cygnus.com)
* combine.c (simplify_rtx, case ABS): Do nothing for ASM_OPERANDS.
Wed Dec 10 12:30:18 1997 Anthony Green <green@cygnus.com>
Wed Dec 10 12:30:18 1997 Anthony Green <green@cygnus.com>
* crtstuff.c (__do_global_ctors): Fix typo.
* crtstuff.c (__do_global_ctors): Fix typo.
...
@@ -28,7 +32,7 @@ Tue Dec 9 01:16:06 1997 Jeffrey A Law (law@cygnus.com)
...
@@ -28,7 +32,7 @@ Tue Dec 9 01:16:06 1997 Jeffrey A Law (law@cygnus.com)
All references changed.
All references changed.
* rtl.h: Protect from multiple inclusions. Add many prototypes.
* rtl.h: Protect from multiple inclusions. Add many prototypes.
Tue Dec 9 01:15:15 199
Fred Fish <fnf@ninemoons.com>7
Tue Dec 9 01:15:15 199
7 Fred Fish <fnf@ninemoons.com>
* libgcc2.c (string.h): Hoist inclusion to occur before first use of
* libgcc2.c (string.h): Hoist inclusion to occur before first use of
string functions like strlen.
string functions like strlen.
...
...
gcc/combine.c
View file @
f40421ce
...
@@ -4097,6 +4097,9 @@ simplify_rtx (x, op0_mode, last, in_dest)
...
@@ -4097,6 +4097,9 @@ simplify_rtx (x, op0_mode, last, in_dest)
if
(
GET_CODE
(
XEXP
(
x
,
0
))
==
NEG
)
if
(
GET_CODE
(
XEXP
(
x
,
0
))
==
NEG
)
SUBST
(
XEXP
(
x
,
0
),
XEXP
(
XEXP
(
x
,
0
),
0
));
SUBST
(
XEXP
(
x
,
0
),
XEXP
(
XEXP
(
x
,
0
),
0
));
if
(
GET_CODE
(
XEXP
(
x
,
0
))
==
ASM_OPERANDS
)
return
x
;
/* If operand is something known to be positive, ignore the ABS. */
/* If operand is something known to be positive, ignore the ABS. */
if
(
GET_CODE
(
XEXP
(
x
,
0
))
==
FFS
||
GET_CODE
(
XEXP
(
x
,
0
))
==
ABS
if
(
GET_CODE
(
XEXP
(
x
,
0
))
==
FFS
||
GET_CODE
(
XEXP
(
x
,
0
))
==
ABS
||
((
GET_MODE_BITSIZE
(
GET_MODE
(
XEXP
(
x
,
0
)))
||
((
GET_MODE_BITSIZE
(
GET_MODE
(
XEXP
(
x
,
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