xref: /llvm-project/clang/test/CodeGen/attr-noinline.c (revision ed509fe296375eb7c01d3d9aeec15cc784695210)
1 // RUN: %clang_cc1 -debug-info-kind=limited -emit-llvm -o %t %s
2 // RUN: grep 'noinline' %t
3 
4 void t1(void) __attribute__((noinline));
5 
t1(void)6 void t1(void)
7 {
8 }
9 
10