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
fd7bcd6f
Commit
fd7bcd6f
authored
Dec 20, 2000
by
Bernd Schmidt
Committed by
Bernd Schmidt
Dec 20, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix ARM bootstrap problems introduced by last change
From-SVN: r38399
parent
99c8c61c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
41 additions
and
31 deletions
+41
-31
gcc/ChangeLog
+5
-0
gcc/flow.c
+36
-31
No files found.
gcc/ChangeLog
View file @
fd7bcd6f
2000-12-20 Bernd Schmidt <bernds@redhat.com>
* flow.c (ior_reg_cond, and_reg_cond, elim_reg_cond): Properly
handle all relational operators.
2000-12-20 Alexandre Oliva <aoliva@redhat.com>
* final.c (output_addr_const): Use ASM_OUTPUT_SYMBOL_REF.
...
...
gcc/flow.c
View file @
fd7bcd6f
...
...
@@ -5010,6 +5010,20 @@ ior_reg_cond (old, x, add)
{
rtx
op0
,
op1
;
if
(
GET_RTX_CLASS
(
GET_CODE
(
old
))
==
'<'
)
{
if
(
GET_RTX_CLASS
(
GET_CODE
(
x
))
==
'<'
&&
GET_CODE
(
x
)
==
reverse_condition
(
GET_CODE
(
old
))
&&
REGNO
(
XEXP
(
x
,
0
))
==
REGNO
(
XEXP
(
old
,
0
)))
return
const1_rtx
;
if
(
GET_CODE
(
x
)
==
GET_CODE
(
old
)
&&
REGNO
(
XEXP
(
x
,
0
))
==
REGNO
(
XEXP
(
old
,
0
)))
return
old
;
if
(
!
add
)
return
old
;
return
gen_rtx_IOR
(
0
,
old
,
x
);
}
switch
(
GET_CODE
(
old
))
{
case
IOR
:
...
...
@@ -5062,19 +5076,6 @@ ior_reg_cond (old, x, add)
return
old
;
return
gen_rtx_IOR
(
0
,
old
,
x
);
case
EQ
:
case
NE
:
if
((
GET_CODE
(
x
)
==
EQ
||
GET_CODE
(
x
)
==
NE
)
&&
GET_CODE
(
x
)
!=
GET_CODE
(
old
)
&&
REGNO
(
XEXP
(
x
,
0
))
==
REGNO
(
XEXP
(
old
,
0
)))
return
const1_rtx
;
if
(
GET_CODE
(
x
)
==
GET_CODE
(
old
)
&&
REGNO
(
XEXP
(
x
,
0
))
==
REGNO
(
XEXP
(
old
,
0
)))
return
old
;
if
(
!
add
)
return
old
;
return
gen_rtx_IOR
(
0
,
old
,
x
);
default
:
abort
();
}
...
...
@@ -5112,6 +5113,20 @@ and_reg_cond (old, x, add)
{
rtx
op0
,
op1
;
if
(
GET_RTX_CLASS
(
GET_CODE
(
old
))
==
'<'
)
{
if
(
GET_RTX_CLASS
(
GET_CODE
(
x
))
==
'<'
&&
GET_CODE
(
x
)
==
reverse_condition
(
GET_CODE
(
old
))
&&
REGNO
(
XEXP
(
x
,
0
))
==
REGNO
(
XEXP
(
old
,
0
)))
return
const0_rtx
;
if
(
GET_CODE
(
x
)
==
GET_CODE
(
old
)
&&
REGNO
(
XEXP
(
x
,
0
))
==
REGNO
(
XEXP
(
old
,
0
)))
return
old
;
if
(
!
add
)
return
old
;
return
gen_rtx_AND
(
0
,
old
,
x
);
}
switch
(
GET_CODE
(
old
))
{
case
IOR
:
...
...
@@ -5164,19 +5179,6 @@ and_reg_cond (old, x, add)
return
old
;
return
gen_rtx_AND
(
0
,
old
,
x
);
case
EQ
:
case
NE
:
if
((
GET_CODE
(
x
)
==
EQ
||
GET_CODE
(
x
)
==
NE
)
&&
GET_CODE
(
x
)
!=
GET_CODE
(
old
)
&&
REGNO
(
XEXP
(
x
,
0
))
==
REGNO
(
XEXP
(
old
,
0
)))
return
const0_rtx
;
if
(
GET_CODE
(
x
)
==
GET_CODE
(
old
)
&&
REGNO
(
XEXP
(
x
,
0
))
==
REGNO
(
XEXP
(
old
,
0
)))
return
old
;
if
(
!
add
)
return
old
;
return
gen_rtx_AND
(
0
,
old
,
x
);
default
:
abort
();
}
...
...
@@ -5193,6 +5195,14 @@ elim_reg_cond (x, regno)
unsigned
int
regno
;
{
rtx
op0
,
op1
;
if
(
GET_RTX_CLASS
(
GET_CODE
(
x
))
==
'<'
)
{
if
(
REGNO
(
XEXP
(
x
,
0
))
==
regno
)
return
const0_rtx
;
return
x
;
}
switch
(
GET_CODE
(
x
))
{
case
AND
:
...
...
@@ -5231,11 +5241,6 @@ elim_reg_cond (x, regno)
return
not_reg_cond
(
op0
);
return
x
;
case
EQ
:
case
NE
:
if
(
REGNO
(
XEXP
(
x
,
0
))
==
regno
)
return
const0_rtx
;
return
x
;
default
:
abort
();
}
...
...
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