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
57ee85b4
Commit
57ee85b4
authored
Jun 04, 2011
by
Jakub Jelinek
Committed by
Jakub Jelinek
Jun 04, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gcc.dg/guality/rotatetest.c (f5, f6): Fix up pastos.
From-SVN: r174632
parent
82f247af
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
gcc/testsuite/ChangeLog
+4
-0
gcc/testsuite/gcc.dg/guality/rotatetest.c
+2
-2
No files found.
gcc/testsuite/ChangeLog
View file @
57ee85b4
2011-06-04 Jakub Jelinek <jakub@redhat.com>
* gcc.dg/guality/rotatetest.c (f5, f6): Fix up pastos.
2011-06-03 Jakub Jelinek <jakub@redhat.com>
PR c++/49276
...
...
gcc/testsuite/gcc.dg/guality/rotatetest.c
View file @
57ee85b4
...
...
@@ -46,7 +46,7 @@ f4 (unsigned int x)
__attribute__
((
noclone
,
noinline
))
unsigned
int
f5
(
unsigned
int
x
,
int
y
)
{
unsigned
int
f
=
(
x
<<
y
)
|
(
x
>>
(
64
-
y
));
unsigned
int
f
=
(
x
<<
y
)
|
(
x
>>
(
32
-
y
));
unsigned
int
g
=
f
;
asm
volatile
(
""
:
"+r"
(
f
));
vv
++
;
/* { dg-final { gdb-test 52 "g" "f" } } */
...
...
@@ -56,7 +56,7 @@ f5 (unsigned int x, int y)
__attribute__
((
noclone
,
noinline
))
unsigned
int
f6
(
unsigned
int
x
,
int
y
)
{
unsigned
int
f
=
(
x
>>
y
)
|
(
x
<<
(
64
-
y
));
unsigned
int
f
=
(
x
>>
y
)
|
(
x
<<
(
32
-
y
));
unsigned
int
g
=
f
;
asm
volatile
(
""
:
"+r"
(
f
));
vv
++
;
/* { dg-final { gdb-test 62 "g" "f" } } */
...
...
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