]> granicus.if.org Git - clang/commitdiff
Remove BasicStore.h (migrated function prototype for CreateBasicStore() to Store.h)
authorTed Kremenek <kremenek@apple.com>
Thu, 28 Aug 2008 23:39:42 +0000 (23:39 +0000)
committerTed Kremenek <kremenek@apple.com>
Thu, 28 Aug 2008 23:39:42 +0000 (23:39 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@55519 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Analysis/PathSensitive/BasicStore.h [deleted file]
include/clang/Analysis/PathSensitive/Store.h
lib/Analysis/BasicStore.cpp
lib/Analysis/GRExprEngine.cpp

diff --git a/include/clang/Analysis/PathSensitive/BasicStore.h b/include/clang/Analysis/PathSensitive/BasicStore.h
deleted file mode 100644 (file)
index 0c7e8ec..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-//== BasicStore.h - Basic map from Locations to 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 BasicStore and BasicStoreManager classes.
-//
-//===----------------------------------------------------------------------===//
-
-#ifndef LLVM_CLANG_ANALYSIS_BASICSTORE_H
-#define LLVM_CLANG_ANALYSIS_BASICSTORE_H
-
-#include "clang/Analysis/PathSensitive/Store.h"
-
-namespace clang {
-  class GRStateManager;
-  StoreManager* CreateBasicStoreManager(GRStateManager& StMgr);
-}
-
-#endif
index 0014c6dfb522ffd8075af77a8641a62dc765a363..4f16901972dd3ca02b771127749154358eb9da1e 100644 (file)
@@ -128,6 +128,9 @@ public:
   virtual store::RegionExtent getExtent(store::Region R) =0;
 };
   
+StoreManager* CreateBasicStoreManager(GRStateManager& StMgr);
+
+  
 } // end clang namespace
 
 #endif
index f05a041179e78c87a045acc05d34c9757f89d543..ace8f3fbb55b378480bee09fdf3fe75e0214c719 100644 (file)
@@ -11,7 +11,6 @@
 //
 //===----------------------------------------------------------------------===//
 
-#include "clang/Analysis/PathSensitive/BasicStore.h"
 #include "clang/Analysis/Analyses/LiveVariables.h"
 #include "clang/Analysis/PathSensitive/GRState.h"
 #include "llvm/ADT/ImmutableMap.h"
index 90ff435f86c217ea21f657dc02f0d2a65dc9904c..8af5a74f19d2aad6f88c8d78d4cc295731701f6c 100644 (file)
@@ -13,7 +13,6 @@
 //
 //===----------------------------------------------------------------------===//
 
-#include "clang/Analysis/PathSensitive/BasicStore.h"
 #include "clang/Analysis/PathSensitive/GRExprEngine.h"
 #include "clang/Analysis/PathSensitive/BugReporter.h"
 #include "clang/Basic/SourceManager.h"