blob: 5c4571b3138dd0b7ad18258615eea64d319c49a6 [file] [log] [blame]
Daniel Dunbar4fcfde42009-11-08 01:45:36 +00001// RUN: clang-cc -analyze -checker-cfref -analyzer-store=basic -verify %s
Daniel Dunbard7d5f022009-03-24 02:24:46 +00002// RUN: clang-cc -analyze -checker-cfref -analyzer-store=region -verify %s
Ted Kremenekd1f5ff72008-09-23 18:05:01 +00003
4// This is a test case for the issue reported in PR 2819:
5// http://llvm.org/bugs/show_bug.cgi?id=2819
6// The flow-sensitive dataflow solver should work even when no block in
7// the CFG reaches the exit block.
8
9int g(int x);
10void h(int x);
11
12int f(int x)
13{
14out_err:
15 if (g(x)) {
16 h(x);
17 }
18 goto out_err;
19}