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
33421d69
Commit
33421d69
authored
Feb 14, 2004
by
Josef Zlomek
Committed by
Josef Zlomek
Feb 14, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gcc.c-torture/compile/20040214-2.c: New test.
From-SVN: r77821
parent
5852680b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
61 additions
and
0 deletions
+61
-0
gcc/testsuite/ChangeLog
+4
-0
gcc/testsuite/gcc.c-torture/compile/20040214-2.c
+57
-0
No files found.
gcc/testsuite/ChangeLog
View file @
33421d69
2004-02-14 Josef Zlomek <zlomekj@suse.cz>
* gcc.c-torture/compile/20040214-2.c: New test.
2004-02-14 Andrew Pinski <pinskia@physics.uc.edu>
PR c++/14116
...
...
gcc/testsuite/gcc.c-torture/compile/20040214-2.c
0 → 100644
View file @
33421d69
/* http://gcc.gnu.org/ml/gcc-patches/2004-02/msg01307.html */
typedef
struct
xdef
xdef
;
struct
xdef
{
char
xtyp
;
xdef
*
next
;
int
y
;
};
extern
void
b
();
extern
void
*
foo
(
void
*
bar
);
extern
void
*
foo2
(
void
*
bar1
,
void
*
bar2
);
extern
void
*
qwe
;
static
void
c
(
xdef
*
xp
)
{
b
(
xp
);
}
static
void
a
(
xdef
**
xpp
)
{
xdef
*
xp
;
xp
=
*
xpp
;
foo
(
xp
);
xp
=
foo2
(
xp
,
qwe
);
b
(
xp
->
next
);
foo
(
xp
);
if
(
xp
->
y
)
{
foo
(
xp
);
if
(
xp
)
{
xdef
*
p
=
foo2
(
xp
,
qwe
);
foo2
(
xp
,
p
);
xp
=
foo
(
p
);
}
else
{
foo2
(
foo
(
*
xpp
),
*
xpp
);
}
}
*
xpp
=
foo2
(
xpp
,
qwe
);
}
void
b
(
xdef
**
xpp
)
{
xdef
*
xp
=
*
xpp
;
if
(
!
xp
)
return
;
if
(
xp
->
xtyp
==
0
)
a
(
xpp
);
c
(
xp
);
}
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