llvm-project/clang/test/CodeGen/attr-noinline.c

10 lines
121 B
C
Raw Normal View History

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