Yitzhak Mandelbaum 8cadac41e9 [clang][dataflow] Add equivalence relation Value type.
Defines an equivalence relation on the `Value` type to standardize several
places in the code where we replicate the ~same equivalence comparison.

Differential Revision: https://reviews.llvm.org/D135964
2022-10-19 12:23:09 +00:00

18 lines
316 B
CMake

add_clang_library(clangAnalysisFlowSensitive
ControlFlowContext.cpp
DataflowAnalysisContext.cpp
DataflowEnvironment.cpp
Transfer.cpp
TypeErasedDataflowAnalysis.cpp
Value.cpp
WatchedLiteralsSolver.cpp
DebugSupport.cpp
LINK_LIBS
clangAnalysis
clangAST
clangBasic
)
add_subdirectory(Models)