Douglas Gregor | 2d2d907 | 2010-04-14 22:19:45 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -fsyntax-only -verify %s |
| 2 | |
| 3 | #include "not exist" // expected-error{{'not exist' file not found}} |
| 4 | |
Ted Kremenek | 81ce1c8 | 2011-10-24 01:32:45 +0000 | [diff] [blame] | 5 | class AnalysisDeclContext {}; |
| 6 | static ControlFlowKind CheckFallThrough(AnalysisDeclContext &AC) { |
Chad Rosier | de70e0e | 2012-08-25 00:11:56 +0000 | [diff] [blame] | 7 | if (const GCCAsmStmt *AS = dyn_cast<GCCAsmStmt>(S)) {} |
Douglas Gregor | 2d2d907 | 2010-04-14 22:19:45 +0000 | [diff] [blame] | 8 | bool NoReturnEdge = false; |
| 9 | } |