]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/struct-ret-2.c
replace ISL with isl
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / struct-ret-2.c
CommitLineData
7b6cbff4
AO
1/* Simplified by Alexandre Oliva <oliva@lsd.ic.unicamp.br>
2 from bug report by Helmut Jarausch <jarausch@igpm.rwth-aachen.de>
3
4 Copyright (C) 1999 Free Software Foundation */
5
da018257 6/* { dg-do compile } */
5ce89b2e 7/* { dg-options "-O3 -w" } */
7b6cbff4
AO
8
9struct {
10 unsigned i[4];
11} foo() {}
12
13void bar() {
14 foo();
15}