aboutsummaryrefslogtreecommitdiff
path: root/test/CFrontend/2007-06-05-NoInlineAttribute.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/CFrontend/2007-06-05-NoInlineAttribute.c')
-rw-r--r--test/CFrontend/2007-06-05-NoInlineAttribute.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/CFrontend/2007-06-05-NoInlineAttribute.c b/test/CFrontend/2007-06-05-NoInlineAttribute.c
deleted file mode 100644
index cb1920aed0..0000000000
--- a/test/CFrontend/2007-06-05-NoInlineAttribute.c
+++ /dev/null
@@ -1,13 +0,0 @@
-// RUN: %llvmgcc -c -emit-llvm %s -o - | llvm-dis | grep llvm.noinline
-
-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);
-}
-