aboutsummaryrefslogtreecommitdiffstats
path: root/test/FrontendC/2008-05-19-AlwaysInline.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/FrontendC/2008-05-19-AlwaysInline.c')
-rw-r--r--test/FrontendC/2008-05-19-AlwaysInline.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/FrontendC/2008-05-19-AlwaysInline.c b/test/FrontendC/2008-05-19-AlwaysInline.c
deleted file mode 100644
index 8dcb57b..0000000
--- a/test/FrontendC/2008-05-19-AlwaysInline.c
+++ /dev/null
@@ -1,12 +0,0 @@
-// RUN: %llvmgcc %s -S -fno-unit-at-a-time -O0 -o - | not grep sabrina
-// RUN: %llvmgcc %s -S -funit-at-a-time -O0 -o - | not grep sabrina
-
-static inline int sabrina (void) __attribute__((always_inline));
-static inline int sabrina (void)
-{
- return 13;
-}
-int bar (void)
-{
- return sabrina () + 68;
-}