diff options
Diffstat (limited to 'lib/Analysis/Environment.cpp')
-rw-r--r-- | lib/Analysis/Environment.cpp | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/lib/Analysis/Environment.cpp b/lib/Analysis/Environment.cpp new file mode 100644 index 0000000000..86fd12c2a5 --- /dev/null +++ b/lib/Analysis/Environment.cpp @@ -0,0 +1,29 @@ +//== Environment.cpp - Map from Expr* to Locations/Values -------*- C++ -*--==// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// +// +// This file defined the Environment and EnvironmentManager classes. +// +//===----------------------------------------------------------------------===// + +#include "clang/Analysis/PathSensitive/Environment.h" +#include "llvm/ADT/ImmutableMap.h" + +using namespace clang; + +//===----------------------------------------------------------------------===// +// Environment. +//===----------------------------------------------------------------------===// + + + + + +//===----------------------------------------------------------------------===// +// Environment Manager. +//===----------------------------------------------------------------------===//
\ No newline at end of file |