blob: e994cfa6bc17031880a2e78710ae95d2300cfa7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* { dg-do compile } */
/* { dg-require-effective-target lp64 } */
/* { dg-skip-if "darwin x86_64 is pic" { *-*-darwin* } { "*" } { "" } } */
/* { dg-options "-O2 -fstack-protector-all -mcmodel=kernel" } */
void test1 (int x)
{
char p[40];
int i;
for (i=0; i<40; i++)
p[i] = x;
}
/* { dg-final { scan-assembler-not "%fs" } } */
|