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
51d87cd9
Commit
51d87cd9
authored
Oct 19, 1998
by
Bernd Schmidt
Committed by
Jeff Law
Oct 19, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* jump.c (sets_cc0_p): Compile only if HAVE_cc0.
From-SVN: r23180
parent
e1f7435e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
4 deletions
+7
-4
gcc/ChangeLog
+4
-0
gcc/jump.c
+3
-4
No files found.
gcc/ChangeLog
View file @
51d87cd9
Mon
Oct
19
13
:
26
:
24
1998
Bernd
Schmidt
<
crux
@pool
.
informatik
.
rwth
-
aachen
.
de
>
*
jump
.
c
(
sets_cc0_p
)
:
Compile
only
if
HAVE_cc0
.
Mon
Oct
19
11
:
40
:
56
1998
Jeffrey
A
Law
(
law
@cygnus
.
com
)
*
loop
.
c
(
scan_loop
)
:
Be
more
selective
about
what
invariants
are
...
...
gcc/jump.c
View file @
51d87cd9
...
...
@@ -3317,6 +3317,8 @@ condjump_in_parallel_p (insn)
return
0
;
}
#ifdef HAVE_cc0
/* Return 1 if X is an RTX that does nothing but set the condition codes
and CLOBBER or USE registers.
Return -1 if X does explicitly set the condition codes,
...
...
@@ -3326,7 +3328,6 @@ int
sets_cc0_p
(
x
)
rtx
x
ATTRIBUTE_UNUSED
;
{
#ifdef HAVE_cc0
if
(
GET_CODE
(
x
)
==
SET
&&
SET_DEST
(
x
)
==
cc0_rtx
)
return
1
;
if
(
GET_CODE
(
x
)
==
PARALLEL
)
...
...
@@ -3345,10 +3346,8 @@ sets_cc0_p (x)
return
!
sets_cc0
?
0
:
other_things
?
-
1
:
1
;
}
return
0
;
#else
abort
();
#endif
}
#endif
/* Follow any unconditional jump at LABEL;
return the ultimate label reached by any such chain of jumps.
...
...
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