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
bba596a3
Commit
bba596a3
authored
Jan 17, 1999
by
Richard Henderson
Committed by
Richard Henderson
Jan 17, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* jump.c (rtx_renumbered_equal_p): Special case CODE_LABEL.
From-SVN: r24725
parent
c65ef754
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
gcc/ChangeLog
+4
-0
gcc/jump.c
+4
-0
No files found.
gcc/ChangeLog
View file @
bba596a3
Sun
Jan
17
21
:
04
:
31
1999
Richard
Henderson
<
rth
@cygnus
.
com
>
*
jump
.
c
(
rtx_renumbered_equal_p
)
:
Special
case
CODE_LABEL
.
Sun
Jan
17
19
:
23
:
20
1999
Jeffrey
A
Law
(
law
@cygnus
.
com
)
Sun
Jan
17
19
:
23
:
20
1999
Jeffrey
A
Law
(
law
@cygnus
.
com
)
*
Makefile
.
in
(
cppulp
.
o
)
:
Add
dependencies
.
*
Makefile
.
in
(
cppulp
.
o
)
:
Add
dependencies
.
...
...
gcc/jump.c
View file @
bba596a3
...
@@ -4431,6 +4431,10 @@ rtx_renumbered_equal_p (x, y)
...
@@ -4431,6 +4431,10 @@ rtx_renumbered_equal_p (x, y)
case
SYMBOL_REF
:
case
SYMBOL_REF
:
return
XSTR
(
x
,
0
)
==
XSTR
(
y
,
0
);
return
XSTR
(
x
,
0
)
==
XSTR
(
y
,
0
);
case
CODE_LABEL
:
/* If we didn't match EQ equality above, they aren't the same. */
return
0
;
default
:
default
:
break
;
break
;
}
}
...
...
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