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
64b7b7a3
Commit
64b7b7a3
authored
Oct 13, 1992
by
Tom Wood
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(mostly_false_jump): Recognize a sequence properly.
From-SVN: r2428
parent
68403115
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
8 deletions
+10
-8
gcc/config/m88k/m88k.c
+10
-8
No files found.
gcc/config/m88k/m88k.c
View file @
64b7b7a3
...
...
@@ -47,7 +47,7 @@ extern char *ctime ();
extern
int
flag_traditional
;
extern
FILE
*
asm_out_file
;
static
char
out_sccs_id
[]
=
"@(#)m88k.c 2.2.13.
1 10/07/92 06:31:13
"
;
static
char
out_sccs_id
[]
=
"@(#)m88k.c 2.2.13.
2 10/13/92 09:26:24
"
;
static
char
tm_sccs_id
[]
=
TM_SCCS_ID
;
char
*
m88k_pound_sign
=
""
;
/* Either # for SVR4 or empty for SVR3 */
...
...
@@ -917,10 +917,11 @@ mostly_false_jump (jump_insn, condition)
{
if
(
GET_CODE
(
insnt
)
==
JUMP_INSN
)
break
;
else
if
(
GET_CODE
(
insnt
)
==
SEQUENCE
&&
GET_CODE
(
XVECEXP
(
insnt
,
0
,
0
))
==
JUMP_INSN
)
else
if
(
GET_CODE
(
insnt
)
==
INSN
&&
GET_CODE
(
PATTERN
(
insnt
))
==
SEQUENCE
&&
GET_CODE
(
XVECEXP
(
PATTERN
(
insnt
),
0
,
0
))
==
JUMP_INSN
)
{
insnt
=
XVECEXP
(
insnt
,
0
,
0
);
insnt
=
XVECEXP
(
PATTERN
(
insnt
)
,
0
,
0
);
break
;
}
}
...
...
@@ -937,10 +938,11 @@ mostly_false_jump (jump_insn, condition)
{
if
(
GET_CODE
(
insnj
)
==
JUMP_INSN
)
break
;
else
if
(
GET_CODE
(
insnj
)
==
SEQUENCE
&&
GET_CODE
(
XVECEXP
(
insnj
,
0
,
0
))
==
JUMP_INSN
)
else
if
(
GET_CODE
(
insnj
)
==
INSN
&&
GET_CODE
(
PATTERN
(
insnj
))
==
SEQUENCE
&&
GET_CODE
(
XVECEXP
(
PATTERN
(
insnj
),
0
,
0
))
==
JUMP_INSN
)
{
insnj
=
XVECEXP
(
insnj
,
0
,
0
);
insnj
=
XVECEXP
(
PATTERN
(
insnj
)
,
0
,
0
);
break
;
}
}
...
...
@@ -949,7 +951,7 @@ mostly_false_jump (jump_insn, condition)
||
(
GET_CODE
(
PATTERN
(
insnj
))
==
SET
&&
GET_CODE
(
SET_SRC
(
PATTERN
(
insnj
)))
==
REG
&&
REGNO
(
SET_SRC
(
PATTERN
(
insnj
)))
==
1
)))
insn
t
=
0
;
insn
j
=
0
;
/* Predict to not return. */
if
((
insnt
==
0
)
!=
(
insnj
==
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