10 lines
124 B
C
10 lines
124 B
C
// RUN: clang-cc -g -emit-llvm -o %t %s &&
|
|
// RUN: grep 'noinline' %t
|
|
|
|
void t1() __attribute__((noinline));
|
|
|
|
void t1()
|
|
{
|
|
}
|
|
|