blob: 0c7e8ece2a8d3834a024c5bc306e548bef883288 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
//== 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
|