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
28e089c6
Commit
28e089c6
authored
Jun 13, 2003
by
Eric Botcazou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gcc.c-torture/execute/20030611-1.c: New test.
From-SVN: r67871
parent
5adf448c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
62 additions
and
0 deletions
+62
-0
gcc/testsuite/gcc.c-torture/execute/20030613-1.c
+62
-0
No files found.
gcc/testsuite/gcc.c-torture/execute/20030613-1.c
0 → 100644
View file @
28e089c6
/* PR optimization/10955 */
/* Originator: <heinrich.brand@fujitsu-siemens.com> */
/* This used to fail on SPARC32 at -O3 because the loop unroller
wrongly thought it could eliminate a pseudo in a loop, while
the pseudo was used outside the loop. */
extern
void
abort
(
void
);
#define COMPLEX struct CS
COMPLEX
{
long
x
;
long
y
;
};
static
COMPLEX
CCID
(
COMPLEX
x
)
{
COMPLEX
a
;
a
.
x
=
x
.
x
;
a
.
y
=
x
.
y
;
return
a
;
}
static
COMPLEX
CPOW
(
COMPLEX
x
,
int
y
)
{
COMPLEX
a
;
a
=
x
;
while
(
--
y
>
0
)
a
=
CCID
(
a
);
return
a
;
}
static
int
c5p
(
COMPLEX
x
)
{
COMPLEX
a
,
b
;
a
=
CPOW
(
x
,
2
);
b
=
CCID
(
CPOW
(
a
,
2
)
);
return
(
b
.
x
==
b
.
y
);
}
int
main
(
void
)
{
COMPLEX
x
;
x
.
x
=
-
7
;
x
.
y
=
-
7
;
if
(
!
c5p
(
x
))
abort
();
return
0
;
}
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