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
7614d20b
Commit
7614d20b
authored
Mar 22, 2002
by
David Edelsohn
Committed by
David Edelsohn
Mar 22, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gcc.c-torture/compile/20020319-1.c: New test.
From-SVN: r51176
parent
96327cdc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
2 deletions
+22
-2
gcc/testsuite/ChangeLog
+2
-2
gcc/testsuite/gcc.c-torture/compile/20020319-1.c
+20
-0
No files found.
gcc/testsuite/ChangeLog
View file @
7614d20b
...
...
@@ -2,6 +2,8 @@
* gcc.dg/20020312-2.c: Add rs6000 target.
* gcc.c-torture/compile/20020319-1.c: New test.
2002-03-21 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
* g++.old-deja/g++.eh/ia64-1.C: Use [ijkl]_[0-9] as variable names.
...
...
@@ -24,8 +26,6 @@
* gcc.dg/struct-by-value-1.c: New test.
* gcc.c-torture/compile/20020319-1.c: New test.
2002-03-18 Jakub Jelinek <jakub@redhat.com>
* g++.dg/opt/conj1.C: New test.
...
...
gcc/testsuite/gcc.c-torture/compile/20020319-1.c
0 → 100644
View file @
7614d20b
/* This testcase ICEd in combine.c:do_SUBST() self-test for sign-extended
CONST_INT because expr.c:expand_expr() was not sign-extending array index
into constant strings. */
typedef
unsigned
char
uch
;
extern
uch
outbuf
[];
extern
unsigned
outcnt
;
extern
void
flush_outbuf
(
void
);
int
zip
(
void
)
{
outcnt
=
0
;
{
outbuf
[
outcnt
++
]
=
(
uch
)(
"
\037\213
"
[
0
]);
if
(
outcnt
==
16384
)
flush_outbuf
();};
{
outbuf
[
outcnt
++
]
=
(
uch
)(
"
\037\213
"
[
1
]);
if
(
outcnt
==
16384
)
flush_outbuf
();};
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