xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGen/emit-all-decls.c (revision 433d6423c39e34ec4b79c950597bb2d236f886be)
1 // RUN: %clang_cc1 -emit-llvm -o %t %s
2 // RUN: not grep "@foo" %t
3 // RUN: %clang_cc1 -femit-all-decls -emit-llvm -o %t %s
4 // RUN: grep "@foo" %t
5 
6 static void foo() {
7 
8 }
9