xref: /minix3/external/bsd/llvm/dist/clang/test/Frontend/disable-output.c (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
1*0a6a1f1dSLionel Sambuc // REQUIRES: x86-registered-target
2*0a6a1f1dSLionel Sambuc // RUN: %clang_cc1 %s -emit-llvm-only -triple=i386-apple-darwin -o %t
3*0a6a1f1dSLionel Sambuc // RUN: not rm %t
4*0a6a1f1dSLionel Sambuc // RUN: %clang_cc1 %s -emit-codegen-only -triple=i386-apple-darwin -o %t
5*0a6a1f1dSLionel Sambuc // RUN: not rm %t
6*0a6a1f1dSLionel Sambuc 
7*0a6a1f1dSLionel Sambuc // Test that output is not generated when emission is disabled.
8