blob: 9a65c20583ec504a5a38ac1e47798cbd1683ac92 [file] [log] [blame]
int ssimple(void)
{
struct {
int a;
} s;
s.a = 1;
return s.a;
}
double sdouble(void)
{
struct {
double a;
} s;
s.a = 1.23;
return s.a;
}
/*
* check-name: init-local32
* check-command: test-linearize -Wno-decl -m32 -fdump-ir=mem2reg $file
* check-output-ignore
* check-output-excludes: load\\.
* check-output-excludes: store\\.
*/