aboutsummaryrefslogtreecommitdiffstats
path: root/test/FrontendC/2007-06-05-NoInlineAttribute.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/FrontendC/2007-06-05-NoInlineAttribute.c')
-rw-r--r--test/FrontendC/2007-06-05-NoInlineAttribute.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/FrontendC/2007-06-05-NoInlineAttribute.c b/test/FrontendC/2007-06-05-NoInlineAttribute.c
deleted file mode 100644
index 9543538..0000000
--- a/test/FrontendC/2007-06-05-NoInlineAttribute.c
+++ /dev/null
@@ -1,13 +0,0 @@
-// RUN: %llvmgcc -O2 -S %s -o - | grep call
-
-static int bar(int x, int y) __attribute__((noinline));
-
-static int bar(int x, int y)
-{
- return x + y;
-}
-
-int foo(int a, int b) {
- return bar(b, a);
-}
-