2012-03-07 05:17:19 +08:00
|
|
|
// Make sure -fno-inline-functions is behaving correctly.
|
2012-03-07 02:49:20 +08:00
|
|
|
// rdar://10972766
|
|
|
|
|
2012-03-16 06:31:42 +08:00
|
|
|
// RUN: %clang_cc1 -O3 -fno-inline -fno-inline-functions -emit-llvm %s -o - | FileCheck -check-prefix=NOINLINE %s
|
2012-03-07 02:49:20 +08:00
|
|
|
|
2012-03-15 07:32:11 +08:00
|
|
|
inline int dont_inline_me(int a, int b) { return(a+b); }
|
2012-03-07 02:49:20 +08:00
|
|
|
|
|
|
|
volatile int *pa = (int*) 0x1000;
|
|
|
|
void foo() {
|
|
|
|
// NOINLINE: @foo
|
|
|
|
// NOINLINE: dont_inline_me
|
2012-03-15 07:32:11 +08:00
|
|
|
// NOINLINE-NOT: inlinehint
|
2012-03-07 02:49:20 +08:00
|
|
|
pa[0] = dont_inline_me(pa[1],pa[2]);
|
|
|
|
}
|