diff options
Diffstat (limited to 'clang/include/clang/Analysis/Analyses/GRSimpleVals.h')
-rw-r--r-- | clang/include/clang/Analysis/Analyses/GRSimpleVals.h | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/clang/include/clang/Analysis/Analyses/GRSimpleVals.h b/clang/include/clang/Analysis/Analyses/GRSimpleVals.h deleted file mode 100644 index 2e772ef5366..00000000000 --- a/clang/include/clang/Analysis/Analyses/GRSimpleVals.h +++ /dev/null @@ -1,33 +0,0 @@ -//===-- GRSimpleVals.h- Simple, Path-Sens. Constant Prop. ---------*- C++ -*-==// -// -// The LLVM Compiler Infrastructure -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// -// -// Constant Propagation via Graph Reachability -// -// This file defines the interface to use the 'GRSimpleVals' path-sensitive -// constant-propagation analysis. -// -//===----------------------------------------------------------------------===// - -#ifndef LLVM_CLANG_GRCONSTANTS -#define LLVM_CLANG_GRCONSTANTS - -namespace clang { - class Diagnostic; - - /// RunGRSimpleVals - This is a simple driver to run the GRSimpleVals analysis - /// on a provided CFG. This interface will eventually be replaced with - /// something more elaborate as the requirements on the interface become - /// clearer. The value returned is the number of nodes in the ExplodedGraph. - unsigned RunGRSimpleVals(CFG& cfg, Decl& CD, ASTContext& Ctx, - Diagnostic& Diag, bool Visualize, bool TrimGraph); - -} // end clang namespace - - -#endif |