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
d55b55aa
Commit
d55b55aa
authored
May 19, 2004
by
Nick Clifton
Committed by
Nick Clifton
May 19, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix typos (missing closing parentheses)
From-SVN: r82021
parent
c6618c03
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
3 deletions
+10
-3
gcc/ChangeLog
+7
-0
gcc/config/ip2k/ip2k.c
+3
-3
No files found.
gcc/ChangeLog
View file @
d55b55aa
2004-05-19 Nick Clifton <nickc@redhat.com>
* config/ip2k/ip2k.c (ip2k_composite_xexp_not_uses_reg_p): Add
missing parenthesis.
* config/ip2k/ip2k.c (ip2k_unary_operator): Likewise.
* config/ip2k/ip2k.c (ip2k_binary_operator): Likewise.
2004-05-19 Steven Bosscher <stevenb@suse.de>
2004-05-19 Steven Bosscher <stevenb@suse.de>
* expr.c (store_constructor): Build loop start and end by hand
* expr.c (store_constructor): Build loop start and end by hand
...
...
gcc/config/ip2k/ip2k.c
View file @
d55b55aa
...
@@ -5973,7 +5973,7 @@ ip2k_composite_xexp_not_uses_reg_p (rtx x, unsigned int r, int rsz)
...
@@ -5973,7 +5973,7 @@ ip2k_composite_xexp_not_uses_reg_p (rtx x, unsigned int r, int rsz)
&&
ip2k_composite_xexp_not_uses_reg_p
(
XEXP
(
x
,
1
),
r
,
rsz
)
&&
ip2k_composite_xexp_not_uses_reg_p
(
XEXP
(
x
,
1
),
r
,
rsz
)
&&
ip2k_composite_xexp_not_uses_reg_p
(
XEXP
(
x
,
2
),
r
,
rsz
));
&&
ip2k_composite_xexp_not_uses_reg_p
(
XEXP
(
x
,
2
),
r
,
rsz
));
if
(
BINARY_P
(
x
)
if
(
BINARY_P
(
x
)
)
return
(
ip2k_composite_xexp_not_uses_reg_p
(
XEXP
(
x
,
0
),
r
,
rsz
)
return
(
ip2k_composite_xexp_not_uses_reg_p
(
XEXP
(
x
,
0
),
r
,
rsz
)
&&
ip2k_composite_xexp_not_uses_reg_p
(
XEXP
(
x
,
1
),
r
,
rsz
));
&&
ip2k_composite_xexp_not_uses_reg_p
(
XEXP
(
x
,
1
),
r
,
rsz
));
...
@@ -6150,14 +6150,14 @@ int
...
@@ -6150,14 +6150,14 @@ int
ip2k_unary_operator
(
rtx
op
,
enum
machine_mode
mode
)
ip2k_unary_operator
(
rtx
op
,
enum
machine_mode
mode
)
{
{
return
((
mode
==
VOIDmode
||
GET_MODE
(
op
)
==
mode
)
return
((
mode
==
VOIDmode
||
GET_MODE
(
op
)
==
mode
)
&&
UNARY_P
(
op
);
&&
UNARY_P
(
op
)
)
;
}
}
int
int
ip2k_binary_operator
(
rtx
op
,
enum
machine_mode
mode
)
ip2k_binary_operator
(
rtx
op
,
enum
machine_mode
mode
)
{
{
return
((
mode
==
VOIDmode
||
GET_MODE
(
op
)
==
mode
)
return
((
mode
==
VOIDmode
||
GET_MODE
(
op
)
==
mode
)
&&
ARITHMETIC_P
(
op
);
&&
ARITHMETIC_P
(
op
)
)
;
}
}
int
int
...
...
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