repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[NDS32] Add intrinsic functions for TLB operation and data prefech.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
20040622-2.c
blob
0be320fa4e240b6b4743448b97a6d3e36a9343d2
1
/* { dg-do link } */
2
/* { dg-require-effective-target ptr32plus } */
3
/* This validates codegen for [r1+32760] on Darwin. */
4
void
f
(
char
x
[
32688
],
double
*
y
,
double
*
z
)
__attribute__
((
noinline
));
5
void
f
(
char
x
[
32688
],
double
*
y
,
double
*
z
) {}
6
main
() {
7
char
x
[
32688
];
8
double
y
,
z
;
9
y
=
z
=
3.0
;
10
f
(
x
, &
y
, &
z
);
11
}