blob: 4cb1a6394eaa24050213465986e3f8749b655f5a [file] [log] [blame]
Duncan Sandsb32d19d2010-11-25 21:24:35 +00001// RUN: %llvmgcc -O3 -S -o - %s | not grep readonly
2// RUN: %llvmgcc -O3 -S -o - %s | not grep readnone
Chris Lattner0af861c2008-01-25 22:36:24 +00003
4
Duncan Sands2a80ba82008-01-28 19:25:47 +00005// The struct being passed byval means that we cannot mark the
6// function readnone. Readnone would allow stores to the arg to
7// be deleted in the caller. We also don't allow readonly since
8// the callee might write to the byval parameter. The inliner
9// would have to assume the worse and introduce an explicit
10// temporary when inlining such a function, which is costly for
11// the common case in which the byval argument is not written.
Chris Lattner0af861c2008-01-25 22:36:24 +000012struct S { int A[1000]; };
Duncan Sands7db9a782008-09-05 21:34:32 +000013int __attribute__ ((const)) f(struct S x) { x.A[1] = 0; return x.A[0]; }
Duncan Sands2a80ba82008-01-28 19:25:47 +000014int g(struct S x) __attribute__ ((pure));
15int h(struct S x) { return g(x); }