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
36c90fd2
Commit
36c90fd2
authored
Nov 01, 2006
by
Eric Botcazou
Committed by
Eric Botcazou
Nov 01, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
20061101-1.c: New test.
* gcc.c-torture/execute/20061101-1.c: New test. From-SVN: r118377
parent
cb953056
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
36 additions
and
0 deletions
+36
-0
gcc/testsuite/ChangeLog
+4
-0
gcc/testsuite/gcc.c-torture/execute/20061101-1.c
+32
-0
No files found.
gcc/testsuite/ChangeLog
View file @
36c90fd2
2006
-
11
-
01
Eric
Botcazou
<
ebotcazou
@libertysurf
.
fr
>
*
gcc
.
c
-
torture
/
execute
/
20061101
-
1
.
c
:
New
test
.
2006
-
11
-
01
Richard
Guenther
<
rguenther
@suse
.
de
>
*
testsuite
/
gcc
.
target
/
i386
/
fpprec
-
1
.
c
:
New
testcase
.
gcc/testsuite/gcc.c-torture/execute/20061101-1.c
0 → 100644
View file @
36c90fd2
/* PR rtl-optimization/28970 */
/* Origin: Peter Bergner <bergner@vnet.ibm.com> */
extern
void
abort
(
void
);
int
tar
(
int
i
)
{
if
(
i
!=
36863
)
abort
();
return
-
1
;
}
void
bug
(
int
q
,
int
bcount
)
{
int
j
=
0
;
int
outgo
=
0
;
while
(
j
!=
-
1
)
{
outgo
++
;
if
(
outgo
>
q
-
1
)
outgo
=
q
-
1
;
j
=
tar
(
outgo
*
bcount
);
}
}
int
main
(
void
)
{
bug
(
5
,
36863
);
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