summaryrefslogtreecommitdiff
path: root/test/Frontend/disable-output.c
blob: 786ac77ef18e1c5abb4b6a66ac74e0ffcf7fda26 (plain)
1
2
3
4
5
6
7
// REQUIRES: x86-registered-target
// RUN: %clang_cc1 %s -emit-llvm-only -triple=i386-apple-darwin -o %t
// RUN: not rm %t
// RUN: %clang_cc1 %s -emit-codegen-only -triple=i386-apple-darwin -o %t
// RUN: not rm %t

// Test that output is not generated when emission is disabled.