mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-29 14:42:01 +00:00
Check that always_inline functions are inlined
whether or not -funit-at-a-time is used (C++ uses it, C doesn't) - it was working before only when not doing unit-at-a-time. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51258 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ec00fcb33d
commit
1e6a575a8f
12
test/CFrontend/2008-05-19-AlwaysInline.c
Normal file
12
test/CFrontend/2008-05-19-AlwaysInline.c
Normal file
@ -0,0 +1,12 @@
|
||||
// RUN: %llvmgcc %s -S -fno-unit-at-a-time -emit-llvm -O0 -o - | not grep sabrina
|
||||
// RUN: %llvmgcc %s -S -funit-at-a-time -emit-llvm -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;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user