forked from OSchip/llvm-project
parent
c5fae47a63
commit
503ad9e91d
|
@ -188,10 +188,10 @@ public:
|
|||
|
||||
// TODO: Turn into a calss.
|
||||
struct NodeBuilderContext {
|
||||
CoreEngine &Eng;
|
||||
const CoreEngine &Eng;
|
||||
const CFGBlock *Block;
|
||||
ExplodedNode *Pred;
|
||||
NodeBuilderContext(CoreEngine &E, const CFGBlock *B, ExplodedNode *N)
|
||||
NodeBuilderContext(const CoreEngine &E, const CFGBlock *B, ExplodedNode *N)
|
||||
: Eng(E), Block(B), Pred(N) { assert(B); assert(!N->isSink()); }
|
||||
|
||||
ExplodedNode *getPred() const { return Pred; }
|
||||
|
|
Loading…
Reference in New Issue