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
4c9c9a3d
Commit
4c9c9a3d
authored
Oct 03, 2002
by
Jan Hubicka
Committed by
Jan Hubicka
Oct 03, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* i386.md (lea to mul peep2): Fix condition.
From-SVN: r57775
parent
cd8dbeef
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
gcc/ChangeLog
+4
-0
gcc/config/i386/i386.md
+4
-2
No files found.
gcc/ChangeLog
View file @
4c9c9a3d
Thu
Oct
3
15
:
15
:
00
CEST
2002
Jan
Hubicka
<
jh
@suse
.
cz
>
*
i386
.
md
(
lea
to
mul
peep2
)
:
Fix
condition
.
2002
-
10
-
02
John
David
Anglin
<
dave
@hiauly1
.
hia
.
nrc
.
ca
>
*
pa
-
linux
.
h
(
FUNCTION_OK_FOR_SIBCALL
)
:
Delete
macro
.
...
...
gcc/config/i386/i386.md
View file @
4c9c9a3d
...
...
@@ -163,7 +163,9 @@
sse,ssemov,sseadd,ssemul,ssecmp,ssecvt,ssediv")
(const_string "sse")
(eq_attr "type" "mmx,mmxmov,mmxadd,mmxmul,mmxcmp,mmxcvt,mmxshft")
(const_string "mmx")]
(const_string "mmx")
(eq_attr "type" "other")
(const_string "unknown")]
(const_string "integer")))
;; The (bounding maximum) length of an instruction immediate.
...
...
@@ -17327,7 +17329,7 @@
[(set (match_operand:SI 0 "register_operand" "")
(subreg:SI (mult:DI (match_operand:DI 1 "register_operand" "")
(match_operand:DI 2 "const_int_operand" "")) 0))]
"exact_log2 (INTVAL (operands[
1
])) >= 0
"exact_log2 (INTVAL (operands[
2
])) >= 0
&& REGNO (operands[0]) == REGNO (operands[1])
&& peep2_regno_dead_p (0, FLAGS_REG)"
[(parallel [(set (match_dup 0) (ashift:SI (match_dup 0) (match_dup 2)))
...
...
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