\ingroup module_hidden \page data-structures-from-ast-to-goto-program Data structures: from AST to GOTO program
\author Martin Brain, Peter Schrammel
See \ref goto-programs, \ref goto_programt and [instructiont](\ref goto_programt::instructiont).
Unsigned mult (unsigned a, unsigned b) { int acc, i; for (i = 0; i < b; i++) acc += a; return acc; }
To be documented.