| 1 |
|
#include <stdlib.h> |
| 2 |
|
#include <stdio.h> |
| 3 |
|
|
| 4 |
< |
#include <parse_tree.h> |
| 5 |
< |
#include <simError.h> |
| 4 |
> |
#include "parse_tree.h" |
| 5 |
> |
#include "simError.h" |
| 6 |
|
|
| 7 |
|
#ifdef IS_MPI |
| 8 |
|
#define __is_lex__ |
| 9 |
< |
#include <mpiBASS.h> |
| 9 |
> |
#include "mpiBASS.h" |
| 10 |
|
#endif |
| 11 |
|
|
| 12 |
|
void walk_down( struct node_tag* the_node, struct namespc the_namespc ); |
| 406 |
|
|
| 407 |
|
void kill_tree( struct node_tag* the_node ){ |
| 408 |
|
|
| 409 |
– |
// These two are needed to get rid of the integer list |
| 409 |
|
|
| 411 |
– |
struct integer_list_tag* current_il; |
| 412 |
– |
struct integer_list_tag* temp_il; |
| 413 |
– |
|
| 414 |
– |
|
| 410 |
|
if( the_node != NULL ){ |
| 411 |
|
|
| 412 |
|
if( the_node->stmt_list != NULL ){ |