xref: /aosp_15_r20/external/clang/test/CodeGen/emit-all-decls.c (revision 67e74705e28f6214e480b399dd47ea732279e315)
1*67e74705SXin Li // RUN: %clang_cc1 -emit-llvm -o %t %s
2*67e74705SXin Li // RUN: not grep "@foo" %t
3*67e74705SXin Li // RUN: %clang_cc1 -femit-all-decls -emit-llvm -o %t %s
4*67e74705SXin Li // RUN: grep "@foo" %t
5*67e74705SXin Li 
foo()6*67e74705SXin Li static void foo() {
7*67e74705SXin Li 
8*67e74705SXin Li }
9