minix/external/bsd/llvm/dist/clang/test/CodeGen/attr-noinline.c

10 lines
123 B
C
Raw Normal View History

// RUN: %clang_cc1 -g -emit-llvm -o %t %s
// RUN: grep 'noinline' %t
void t1() __attribute__((noinline));
void t1()
{
}