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
8f808fc2
Commit
8f808fc2
authored
Oct 29, 2010
by
Paul Koning
Committed by
Paul Koning
Oct 29, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* config/pdp11/pdp11.md (divhi3, modhi3, divmodhi3): Fix ICE.
From-SVN: r166075
parent
9546fe6a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
7 deletions
+11
-7
gcc/ChangeLog
+4
-0
gcc/config/pdp11/pdp11.md
+7
-7
No files found.
gcc/ChangeLog
View file @
8f808fc2
2010
-
10
-
29
Paul
Koning
<
ni1d
@arrl
.
net
>
2010
-
10
-
29
Paul
Koning
<
ni1d
@arrl
.
net
>
*
config
/
pdp11
/
pdp11
.
md
(
divhi3
,
modhi3
,
divmodhi3
)
:
Fix
ICE
.
2010
-
10
-
29
Paul
Koning
<
ni1d
@arrl
.
net
>
PR
/
41822
PR
/
41822
*
config
/
pdp11
/
pdp11
.
md
(
andhi3
,
andqi3
)
:
Fix
wrong
code
error
.
*
config
/
pdp11
/
pdp11
.
md
(
andhi3
,
andqi3
)
:
Fix
wrong
code
error
.
gcc/config/pdp11/pdp11.md
View file @
8f808fc2
...
@@ -1418,9 +1418,9 @@
...
@@ -1418,9 +1418,9 @@
(define_expand "divhi3"
(define_expand "divhi3"
[
(set (subreg:HI (match_dup 1) 0)
[
(set (subreg:HI (match_dup 1) 0)
(div:HI (match_operand:SI 1 "
general
_operand" "0")
(div:HI (match_operand:SI 1 "
register
_operand" "0")
(match_operand:HI 2 "general_operand" "g")))
(match_operand:HI 2 "general_operand" "g")))
(set (match_operand:HI 0 "
general
_operand" "=r")
(set (match_operand:HI 0 "
register
_operand" "=r")
(subreg:HI (match_dup 1) 0))]
(subreg:HI (match_dup 1) 0))]
"TARGET_40_PLUS"
"TARGET_40_PLUS"
"")
"")
...
@@ -1435,9 +1435,9 @@
...
@@ -1435,9 +1435,9 @@
(define_expand "modhi3"
(define_expand "modhi3"
[
(set (subreg:HI (match_dup 1) 2)
[
(set (subreg:HI (match_dup 1) 2)
(mod:HI (match_operand:SI 1 "
general
_operand" "0")
(mod:HI (match_operand:SI 1 "
register
_operand" "0")
(match_operand:HI 2 "general_operand" "g")))
(match_operand:HI 2 "general_operand" "g")))
(set (match_operand:HI 0 "
general
_operand" "=r")
(set (match_operand:HI 0 "
register
_operand" "=r")
(subreg:HI (match_dup 1) 2))]
(subreg:HI (match_dup 1) 2))]
"TARGET_40_PLUS"
"TARGET_40_PLUS"
"")
"")
...
@@ -1452,14 +1452,14 @@
...
@@ -1452,14 +1452,14 @@
;(define_expand "divmodhi4"
;(define_expand "divmodhi4"
;
[
(parallel
[
(set (subreg:HI (match_dup 1) 0)
;
[
(parallel
[
(set (subreg:HI (match_dup 1) 0)
; (div:HI (match_operand:SI 1 "
general
_operand" "0")
; (div:HI (match_operand:SI 1 "
register
_operand" "0")
; (match_operand:HI 2 "general_operand" "g")))
; (match_operand:HI 2 "general_operand" "g")))
; (set (subreg:HI (match_dup 1) 2)
; (set (subreg:HI (match_dup 1) 2)
; (mod:HI (match_dup 1)
; (mod:HI (match_dup 1)
; (match_dup 2)))])
; (match_dup 2)))])
; (set (match_operand:HI 3 "
general
_operand" "=r")
; (set (match_operand:HI 3 "
register
_operand" "=r")
; (subreg:HI (match_dup 1) 2))
; (subreg:HI (match_dup 1) 2))
; (set (match_operand:HI 0 "
general
_operand" "=r")
; (set (match_operand:HI 0 "
register
_operand" "=r")
; (subreg:HI (match_dup 1) 0))]
; (subreg:HI (match_dup 1) 0))]
; "TARGET_40_PLUS"
; "TARGET_40_PLUS"
; "")
; "")
...
...
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