diff options
Diffstat (limited to 'test/FrontendC/always-inline.c')
-rw-r--r-- | test/FrontendC/always-inline.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/test/FrontendC/always-inline.c b/test/FrontendC/always-inline.c deleted file mode 100644 index 22f6c7a..0000000 --- a/test/FrontendC/always-inline.c +++ /dev/null @@ -1,12 +0,0 @@ -// RUN: %llvmgcc -S %s -o - | grep call | not grep foo - -void bar() { -} - -inline void __attribute__((__always_inline__)) foo() { - bar(); -} - -void i_want_bar() { - foo(); -} |