Home | History | Annotate | Download | only in PCH

Lines Matching refs:all

13 // RUN: echo '#include "tmp2.h"' > %t_orig/all.h
14 // RUN: echo '#include "sub/orig_sub.h"' >> %t_orig/all.h
15 // RUN: echo '#include "orig_sub2.h"' >> %t_orig/all.h
16 // RUN: echo 'int all();' >> %t_orig/all.h
19 // RUN: cd %t_orig && %clang_cc1 -x c++ -emit-pch -o all.h.pch -Isub2 all.h
23 // RUN: %clang_cc1 -include-pch all.h.pch -I%t_moved -I%t_moved/sub2 -Wpadded -emit-obj -o %t.o %s 2> %t.stderr
27 // RUN: not %clang_cc1 -DREDECL -include-pch all.h.pch -I%t_moved -I%t_moved/sub2 -emit-obj -o %t.o %s 2> %t.stderr
31 // RUN: not %clang_cc1 -DINSTANTIATION -include-pch all.h.pch -I%t_moved -I%t_moved/sub2 -emit-obj -o %t.o %s 2> %t.stderr
34 void qq(orig_sub*) {all();}