Check that the gcc front-end is not doing inlining

when not doing unit-at-a-time.

llvm-svn: 71986
This commit is contained in:
Duncan Sands 2009-05-17 19:37:02 +00:00
parent cdf1ca1cf4
commit c5161d4b83
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
// RUN: %llvmgcc -S %s -O0 -o - -mllvm --disable-llvm-optzns | grep bar
// Check that the gcc inliner is turned off.
#include <stdio.h>
static __inline__ __attribute__ ((always_inline))
int bar (int x)
{
return 4;
}
void
foo ()
{
long long b = 1;
int Y = bar (4);
printf ("%d\n", Y);
}