diff options
author | Ted Kremenek <kremenek@apple.com> | 2009-03-31 20:22:36 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2009-03-31 20:22:36 +0000 |
commit | 7dc8664a54f4ede40a5f4adee3f5081a59d7ee1c (patch) | |
tree | 24334db0db75a7d149000354dff315c1963f0fef /lib/Frontend/PlistDiagnostics.cpp | |
parent | 9bde77309fd2f9f7a53446e374472c48c81f5182 (diff) |
Allow two codepaths for PathDiagnostic generation. This patch mainly consists of
refactoring to make this possible (no functionality change).
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@68141 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Frontend/PlistDiagnostics.cpp')
-rw-r--r-- | lib/Frontend/PlistDiagnostics.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Frontend/PlistDiagnostics.cpp b/lib/Frontend/PlistDiagnostics.cpp index 007fae8896..0c146e54c2 100644 --- a/lib/Frontend/PlistDiagnostics.cpp +++ b/lib/Frontend/PlistDiagnostics.cpp @@ -40,7 +40,9 @@ namespace { ~PlistDiagnostics(); void HandlePathDiagnostic(const PathDiagnostic* D); + PathGenerationScheme getGenerationScheme() const { return Extensive; } bool supportsLogicalOpControlFlow() const { return true; } + bool supportsAllBlockEdges() const { return true; } }; } // end anonymous namespace |