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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
153 B
C
Raw Normal View History

// RUN: %clang_cc1 -debug-info-kind=limited -emit-llvm -o %t %s
// RUN: grep 'noinline' %t
void t1(void) __attribute__((noinline));
void t1(void)
{
}