PIPS
print_code_as_a_graph.c File Reference
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "genC.h"
#include "linear.h"
#include "misc.h"
#include "properties.h"
#include "ri-util.h"
#include "prettyprint.h"
+ Include dependency graph for print_code_as_a_graph.c:

Go to the source code of this file.

Functions

bool print_code_as_a_graph (const string mod_name)
 Define all the entry points to generate the various graph sequential view to be viewed later with a graph viewer such as daVinci. More...
 

Function Documentation

◆ print_code_as_a_graph()

bool print_code_as_a_graph ( const string  mod_name)

Define all the entry points to generate the various graph sequential view to be viewed later with a graph viewer such as daVinci.

print_code_as_a_graph.c

Ronan.nosp@m..Ker.nosp@m.yell@.nosp@m.cri..nosp@m.ensmp.nosp@m..fr, 5/09/1995.

Parameters
mod_nameod_name

Definition at line 47 of file print_code_as_a_graph.c.

48 {
49  bool success;
50 
51  set_bool_property("PRETTYPRINT_UNSTRUCTURED_AS_A_GRAPH", true);
52  success = print_code(mod_name);
53  set_bool_property("PRETTYPRINT_UNSTRUCTURED_AS_A_GRAPH", false);
54 
55  return success;
56 }
bool success
Definition: gpips-local.h:59
bool print_code(const string)
Definition: print.c:272
void set_bool_property(const char *, bool)

References print_code(), and set_bool_property().

+ Here is the call graph for this function: