xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGen/attr-noinline.c (revision eda6f5931d42c77e1480347b1fc3eef2f8d33806)
1 // RUN: %clang_cc1 -g -emit-llvm -o %t %s
2 // RUN: grep 'noinline' %t
3 
4 void t1() __attribute__((noinline));
5 
6 void t1()
7 {
8 }
9 
10