bolt/deps/llvm-18.1.8/clang/test/CodeGen/attr-noinline.c

10 lines
153 B
C
Raw Normal View History

2025-02-14 19:21:04 +01:00
// RUN: %clang_cc1 -debug-info-kind=limited -emit-llvm -o %t %s
// RUN: grep 'noinline' %t
void t1(void) __attribute__((noinline));
void t1(void)
{
}