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