-
Notifications
You must be signed in to change notification settings - Fork 156
Expand file tree
/
Copy pathphasar.h
More file actions
29 lines (25 loc) · 822 Bytes
/
phasar.h
File metadata and controls
29 lines (25 loc) · 822 Bytes
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
/******************************************************************************
* Copyright (c) 2023 Fabian Schiebel.
* All rights reserved. This program and the accompanying materials are made
* available under the terms of LICENSE.txt.
*
* Contributors:
* Fabian Schiebel and others
*****************************************************************************/
#ifndef PHASAR_H
#define PHASAR_H
#include "phasar/AnalysisStrategy.h"
#include "phasar/Config.h"
#include "phasar/ControlFlow.h"
#include "phasar/DB.h"
#include "phasar/DataFlow.h"
#include "phasar/Domain.h"
#include "phasar/PhasarLLVM.h"
#include "phasar/PhasarPass.h"
#include "phasar/Pointer.h"
#include "phasar/TypeHierarchy.h"
#include "phasar/Utils.h"
#ifdef BUILD_PHASAR_CLANG
#include "phasar/PhasarClang.h"
#endif
#endif // PHASAR_H