16 lines · c
1// RUN: rm -f %t1.bc2// RUN: %clang_cc1 -DPASS %s -emit-llvm-bc -o %t1.bc3// RUN: opt %t1.bc -disable-output4// RUN: rm -f %t1.bc5// RUN: not %clang_cc1 %s -emit-llvm-bc -o %t1.bc6// RUN: not opt %t1.bc -disable-output7 8void f(void) {9}10 11#ifndef PASS12void g(void) {13 *10;14}15#endif16