blob: d9d3208ac514c273b45c4cf06d2cfc55739d16f7 (
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
25
26
27
28
29
|
//== 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 llvm {
class BumpPtrAllocator;
class ASTContext;
}
namespace clang {
StoreManager* CreateBasicStoreManager(llvm::BumpPtrAllocator& Alloc,
ASTContext& Ctx);
}
#endif
|