llvm-for-llvmta/tools/clang/test/Frontend/disable-output.c
Nils Hölscher 7f403f4f1e added clang
2022-04-25 13:02:35 +02:00

8 lines
279 B
C

// 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.