diff options
author | Duncan Sands <baldrick@free.fr> | 2009-05-17 19:37:02 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2009-05-17 19:37:02 +0000 |
commit | c5161d4b831823ca433e72007f4abe183d12f533 (patch) | |
tree | 864d01b1d10b47e114154227450e987a29b7e938 | |
parent | cdf1ca1cf42d20d88d16259cd7089dbfef31e83a (diff) | |
download | bcm5719-llvm-c5161d4b831823ca433e72007f4abe183d12f533.tar.gz bcm5719-llvm-c5161d4b831823ca433e72007f4abe183d12f533.zip |
Check that the gcc front-end is not doing inlining
when not doing unit-at-a-time.
llvm-svn: 71986
-rw-r--r-- | llvm/test/FrontendC/2009-05-17-AlwaysInline.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/llvm/test/FrontendC/2009-05-17-AlwaysInline.c b/llvm/test/FrontendC/2009-05-17-AlwaysInline.c new file mode 100644 index 00000000000..e758cbf6e7c --- /dev/null +++ b/llvm/test/FrontendC/2009-05-17-AlwaysInline.c @@ -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); +} |