fixed dead flag for functions
This commit is contained in:
@@ -17,6 +17,7 @@ struct graph_node {
|
||||
SgStatement *st_header;
|
||||
SgStatement *st_last;
|
||||
SgStatement *st_copy;
|
||||
SgStatement *st_copy_first;
|
||||
SgStatement *st_interface;
|
||||
SgSymbol *symb; //??? st_header->symbol()
|
||||
char *name;
|
||||
@@ -30,6 +31,7 @@ struct graph_node {
|
||||
int count; //counter of inline expansions or calls
|
||||
int is_routine;// has ROUTINE attribute - 1, else - 0
|
||||
int samenamed; // flag - there is samenamed symbol
|
||||
struct argument_numbers *arg_numbs;
|
||||
|
||||
#if __SPF
|
||||
graph_node() { addToCollection(__LINE__, __FILE__, this, 1); }
|
||||
@@ -67,4 +69,6 @@ struct edge_list {
|
||||
edge_list() { addToCollection(__LINE__, __FILE__, this, 1); }
|
||||
~edge_list() { removeFromCollection(this); }
|
||||
#endif
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user