hanchenye-llvm-project/clang/test/CodeGen/attr-noinline.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()
{
}