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