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
cfc2e87e
Commit
cfc2e87e
authored
Jun 28, 1999
by
Jeff Law
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Opps. Wrong file the first time.
From-SVN: r27813
parent
da621fd2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
46 additions
and
22 deletions
+46
-22
gcc/testsuite/gcc.c-torture/execute/990628-1.c
+46
-22
No files found.
gcc/testsuite/gcc.c-torture/execute/990628-1.c
View file @
cfc2e87e
#
define TP_BSIZE 64
#
include <stdlib.h>
char
buf
[
2
*
TP_BSIZE
];
char
(
*
nextblock
)[
TP_BSIZE
]
=
(
char
(
*
)[
TP_BSIZE
])
buf
;
struct
{
long
sqlcode
;
}
sqlca
;
union
u_test
{
char
dummy
[
TP_BSIZE
];
struct
s_test
{
int
a
;
int
b
;
int
c
;
}
s_test
;
};
main
(
int
argc
,
char
**
argv
)
struct
data_record
{
int
dummy
;
int
a
[
100
];
}
*
data_ptr
,
data_tmp
;
int
num_records
()
{
int
i
;
char
dp
[
TP_BSIZE
];
return
1
;
}
for
(
i
=
0
;
i
<
2
*
TP_BSIZE
;
i
++
)
buf
[
i
]
=
'.'
;
for
(
i
=
0
;
i
<
TP_BSIZE
;
i
++
)
dp
[
i
]
=
'a'
;
void
fetch
()
{
static
int
fetch_count
;
memset
(
&
data_tmp
,
0x55
,
sizeof
(
data_tmp
));
sqlca
.
sqlcode
=
(
++
fetch_count
>
1
?
100
:
0
);
}
*
(
union
u_test
*
)(
*
(
nextblock
)
++
)
=
*
(
union
u_test
*
)
dp
;
for
(
i
=
0
;
i
<
2
*
TP_BSIZE
;
i
++
)
printf
(
"%c%s"
,
buf
[
i
],
(
i
%
64
)
==
63
?
"
\n
"
:
""
);
exit
(
0
);
void
load_data
()
{
struct
data_record
*
p
;
int
num
=
num_records
();
data_ptr
=
malloc
(
num
*
sizeof
(
struct
data_record
));
memset
(
data_ptr
,
0xaa
,
num
*
sizeof
(
struct
data_record
));
fetch
();
p
=
data_ptr
;
while
(
sqlca
.
sqlcode
==
0
)
{
*
p
++
=
data_tmp
;
fetch
();
}
}
main
()
{
load_data
();
if
(
data_ptr
[
0
].
dummy
!=
0x55555555
)
abort
();
exit
(
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