Extension: Call Graph

Example

::
$ rscc -x callgraph file.c f calls g g calls h g calls h h calls h h calls i $

Syntax & Semantics

This extension, invoked from the command line, prints a call graph for the code to standard output and disables compilation to object files.

Implementation

Not implemented.

Was implemented in earlier rscc version: set the global nocompile flag, and then extend the compile function to print a message when a function call is being compiled.