diff options
Diffstat (limited to 'gcc/analyzer/program-point.h')
-rw-r--r-- | gcc/analyzer/program-point.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/analyzer/program-point.h b/gcc/analyzer/program-point.h index d710ce7..4b1c733 100644 --- a/gcc/analyzer/program-point.h +++ b/gcc/analyzer/program-point.h @@ -104,6 +104,8 @@ public: return m_stmt_idx; } + bool final_stmt_p () const; + /* Factory functions for making various kinds of program_point. */ static function_point from_function_entry (const supergraph &sg, @@ -145,6 +147,8 @@ public: /* For before_stmt, go to next stmt. */ void next_stmt (); + function_point get_next () const; + private: const supernode *m_supernode; |