cprover
stack_depth.h
Go to the documentation of this file.
1 /*******************************************************************\
2 
3 Module: Stack depth checks
4 
5 Author: Daniel Kroening, Michael Tautschnig
6 
7 Date: November 2011
8 
9 \*******************************************************************/
10 
13 
14 #ifndef CPROVER_GOTO_INSTRUMENT_STACK_DEPTH_H
15 #define CPROVER_GOTO_INSTRUMENT_STACK_DEPTH_H
16 
17 class symbol_tablet;
18 class goto_functionst;
19 
20 void stack_depth(
21  symbol_tablet &symbol_table,
22  goto_functionst &goto_functions,
23  const int depth);
24 
25 #endif // CPROVER_GOTO_INSTRUMENT_STACK_DEPTH_H
The symbol table.
Definition: symbol_table.h:52
void stack_depth(symbol_tablet &symbol_table, goto_functionst &goto_functions, const int depth)
Definition: stack_depth.cpp:85