blob: 2cae57b3d89f61a6c420d52819ca5da2a8c6e771 [file] [log] [blame]
Daniel Dunbar8b576972009-11-08 01:45:36 +00001// RUN: rm -f %t1.bc
Daniel Dunbar8fbe78f2009-12-15 20:14:24 +00002// RUN: %clang_cc1 -DPASS %s -emit-llvm-bc -o %t1.bc
NAKAMURA Takumi98835742011-03-05 11:15:55 +00003// RUN: opt %t1.bc -disable-output
Argyrios Kyrtzidisd0599972010-09-17 17:38:48 +00004// RUN: rm -f %t1.bc
Daniel Dunbar8fbe78f2009-12-15 20:14:24 +00005// RUN: not %clang_cc1 %s -emit-llvm-bc -o %t1.bc
NAKAMURA Takumi98835742011-03-05 11:15:55 +00006// RUN: not opt %t1.bc -disable-output
Daniel Dunbar155ed242008-07-18 16:38:05 +00007
8void f() {
9}
10
Daniel Dunbar9c7efbb2009-11-20 17:23:39 +000011#ifndef PASS
Daniel Dunbar155ed242008-07-18 16:38:05 +000012void g() {
13 *10;
14}
Daniel Dunbar9c7efbb2009-11-20 17:23:39 +000015#endif