summaryrefslogtreecommitdiffstats
path: root/test/FrontendC/2009-05-17-AlwaysInline.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/FrontendC/2009-05-17-AlwaysInline.c')
-rw-r--r--test/FrontendC/2009-05-17-AlwaysInline.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/FrontendC/2009-05-17-AlwaysInline.c b/test/FrontendC/2009-05-17-AlwaysInline.c
new file mode 100644
index 0000000..a93fabe
--- /dev/null
+++ b/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);
+}