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
b151501e
Commit
b151501e
authored
Dec 01, 1998
by
Jeffrey A Law
Committed by
Jeff Law
Dec 01, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* mips.md (trap_if): Use "$0" for the value zero.
From-SVN: r24053
parent
e3f6ee23
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
4 deletions
+20
-4
gcc/ChangeLog
+4
-0
gcc/config/mips/mips.md
+16
-4
No files found.
gcc/ChangeLog
View file @
b151501e
Wed
Dec
2
00
:
47
:
31
1998
Jeffrey
A
Law
(
law
@cygnus
.
com
)
*
mips
.
md
(
trap_if
)
:
Use
"$0"
for
the
value
zero
.
Tue
Dec
1
20
:
49
:
49
1998
Ulrich
Drepper
<
drepper
@cygnus
.
com
>
Stephen
L
Moshier
<
moshier
@world
.
std
.
com
>
Richard
Henderson
<
rth
@cygnus
.
com
>
...
...
gcc/config/mips/mips.md
View file @
b151501e
...
...
@@ -2431,10 +2431,22 @@
&& REGNO (operands[1]) == 0)
have_dep_anti = 1;
if (! have_dep_anti)
if (GENERATE_BRANCHLIKELY)
return
\"
%(beql
\\
t%0,%1,.+8
\\
n
\\
tbreak
\\
t%2%)
\"
;
else
return
\"
%(bne
\\
t%0,%1,.+12
\\
n
\\
tnop
\\
n
\\
tbreak
\\
t%2%)
\"
;
{
if (GENERATE_BRANCHLIKELY)
{
if (GET_CODE (operands
[
1
]
) == CONST_INT)
return
\"
%(beql
\\
t%0,$0,.+8
\\
n
\\
tbreak
\\
t%2%)
\"
;
else
return
\"
%(beql
\\
t%0,%1,.+8
\\
n
\\
tbreak
\\
t%2%)
\"
;
}
else
{
if (GET_CODE (operands
[
1
]
) == CONST_INT)
return
\"
%(bne
\\
t%0,$0,.+12
\\
n
\\
tnop
\\
n
\\
tbreak
\\
t%2%)
\"
;
else
return
\"
%(bne
\\
t%0,%1,.+12
\\
n
\\
tnop
\\
n
\\
tbreak
\\
t%2%)
\"
;
}
}
return
\"\"
;
}"
[
(set_attr "type" "unknown")
...
...
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