repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
clang
/
test
/
PCH
/
cxx-recovery-expr.cpp
blob
e0d58c119c5404f52f9f6d512436234ee6b2cdac
1
// Test with pch.
2
// RUN: %clang_cc1 -emit-pch -frecovery-ast -fallow-pch-with-compiler-errors -o %t %s
3
// RUN: %clang_cc1 -include-pch %t -fno-validate-pch -emit-llvm -o - %s
4
5
#ifndef HEADER
6
#define HEADER
7
8
int
func
(
int
);
9
int
s
=
func
();
10
11
#else
12
13
#endif