diff options
Diffstat (limited to 'include/clang/Analysis/ProgramPoint.h')
-rw-r--r-- | include/clang/Analysis/ProgramPoint.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/clang/Analysis/ProgramPoint.h b/include/clang/Analysis/ProgramPoint.h index 074a262038..8e6d5ec831 100644 --- a/include/clang/Analysis/ProgramPoint.h +++ b/include/clang/Analysis/ProgramPoint.h @@ -131,7 +131,8 @@ public: class BlockEntrance : public ProgramPoint { public: - BlockEntrance(const CFGBlock* B) : ProgramPoint(B, BlockEntranceKind) {} + BlockEntrance(const CFGBlock* B, const void *tag = 0) + : ProgramPoint(B, BlockEntranceKind, tag) {} CFGBlock* getBlock() const { return reinterpret_cast<CFGBlock*>(getData1NoMask()); |