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
971ea67c
Commit
971ea67c
authored
Sep 10, 2014
by
Xinliang David Li
Committed by
Xinliang David Li
Sep 10, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix PR target/63209.
From-SVN: r215136
parent
7bee00c3
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
46 additions
and
2 deletions
+46
-2
gcc/ChangeLog
+6
-0
gcc/config/arm/arm.md
+8
-2
gcc/testsuite/ChangeLog
+5
-0
gcc/testsuite/gcc.c-torture/execute/pr63209.c
+27
-0
No files found.
gcc/ChangeLog
View file @
971ea67c
2014
-
09
-
10
Xinliang
David
Li
<
davidxl
@
google
.
com
>
PR
target
/
63209
*
config
/
arm
/
arm
.
md
(
movcond_addsi
):
Handle
case
where
source
and
target
operands
are
the
same
.
2014
-
09
-
10
David
Malcolm
<
dmalcolm
@
redhat
.
com
>
*
final
.
c
(
this_is_asm_operands
):
Strengthen
this
variable
from
gcc/config/arm/arm.md
View file @
971ea67c
...
...
@@ -9328,10 +9328,16 @@
enum machine_mode mode = SELECT_CC_MODE (GET_CODE (operands
[
5
]
),
operands
[
3
]
, operands
[
4
]
);
enum rtx_code rc = GET_CODE (operands
[
5
]
);
operands
[
6
]
= gen_rtx_REG (mode, CC_REGNUM);
gcc_assert (!(mode == CCFPmode || mode == CCFPEmode));
rc = reverse_condition (rc);
if (REGNO (operands
[
2
]
) != REGNO (operands
[
0
]
))
rc = reverse_condition (rc);
else
{
rtx tmp = operands
[
1
]
;
operands
[
1
]
= operands
[
2
]
;
operands
[
2
]
= tmp;
}
operands[6] = gen_rtx_fmt_ee (rc, VOIDmode, operands[6], const0_rtx);
}
...
...
gcc/testsuite/ChangeLog
View file @
971ea67c
2014
-
09
-
10
Xinliang
David
Li
<
davidxl
@
google
.
com
>
PR
target
/
63209
*
gcc
.
c
-
torture
/
execute
/
pr63209
.
c
:
New
test
.
2014
-
09
-
10
Jakub
Jelinek
<
jakub
@
redhat
.
com
>
*
gcc
.
target
/
i386
/
i386
.
exp
:
Only
run
vect
-
args
.
c
tests
...
...
gcc/testsuite/gcc.c-torture/execute/pr63209.c
0 → 100644
View file @
971ea67c
static
int
Sub
(
int
a
,
int
b
)
{
return
b
-
a
;
}
static
unsigned
Select
(
unsigned
a
,
unsigned
b
,
unsigned
c
)
{
const
int
pa_minus_pb
=
Sub
((
a
>>
8
)
&
0xff
,
(
b
>>
8
)
&
0xff
)
+
Sub
((
a
>>
0
)
&
0xff
,
(
b
>>
0
)
&
0xff
);
return
(
pa_minus_pb
<=
0
)
?
a
:
b
;
}
__attribute__
((
noinline
))
unsigned
Predictor
(
unsigned
left
,
const
unsigned
*
const
top
)
{
const
unsigned
pred
=
Select
(
top
[
1
],
left
,
top
[
0
]);
return
pred
;
}
int
main
(
void
)
{
const
unsigned
top
[
2
]
=
{
0xff7a7a7a
,
0xff7a7a7a
};
const
unsigned
left
=
0xff7b7b7b
;
const
unsigned
pred
=
Predictor
(
left
,
top
/*+ 1*/
);
if
(
pred
==
left
)
return
0
;
return
1
;
}
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