X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=testprograms%2Fempty.c;h=1011d025e6e16d0e96406957f01fe22d53de2e89;hb=25b98cffb1adb46fe80496cd01b336dac0f5f168;hp=39965889ccb600e66f920f55b41de8b2707859b6;hpb=863d31d7a5c8210432fef88b30fc3e8353131538;p=libfirm diff --git a/testprograms/empty.c b/testprograms/empty.c index 39965889c..1011d025e 100644 --- a/testprograms/empty.c +++ b/testprograms/empty.c @@ -11,12 +11,12 @@ */ -# include -# include +#include +#include -# include "irvrfy.h" -# include "irdump.h" -# include "firm.h" + + +#include /** * An empty Firm program. @@ -30,12 +30,12 @@ * **/ -int main(int argc, char **argv) +int main(void) { ir_graph *irg; /* this variable contains the irgraph */ - type *owner; /* the class in which this method is defined */ - type *proc_main; /* type information for the method main */ - entity *ent; /* represents this method as entity of owner */ + ir_type *owner; /* the class in which this method is defined */ + ir_type *proc_main; /* ir_type information for the method main */ + ir_entity *ent; /* represents this method as ir_entity of owner */ ir_node *x; /* to build control flow */ printf("\nCreating an IR graph: EMPTY...\n"); @@ -43,7 +43,7 @@ int main(int argc, char **argv) /* init library */ init_firm (NULL); - /** Build type information for the procedure. **/ + /** Build ir_type information for the procedure. **/ /* FIRM was designed for oo languages where all methods belong to a class. * For imperative languages like C we view a file as a large class containing @@ -55,18 +55,18 @@ int main(int argc, char **argv) #define METHODNAME "EMPTY_main" #define NRARGS 0 #define NRES 0 - /* The type of the method */ + /* The ir_type of the method */ proc_main = new_type_method(new_id_from_chars(METHODNAME, strlen(METHODNAME)), NRARGS, NRES); - /* An entity representing the method. Owner of the entity is the global class - type mentioned above. */ - ent = new_entity ((type *)owner, + /* An ir_entity representing the method. Owner of the ir_entity is the global class + ir_type mentioned above. */ + ent = new_entity ((ir_type *)owner, new_id_from_chars (METHODNAME, strlen(METHODNAME)), - (type *)proc_main); + (ir_type *)proc_main); /** Build code for the procedure. **/ - /* Generates the basic graph for the method represented by entity ent, that + /* Generates the basic graph for the method represented by ir_entity ent, that * is, generates start and end blocks and nodes and a first, initial block. * The constructor needs to know the number of local variables (including * the arguments) in the method. @@ -97,8 +97,8 @@ int main(int argc, char **argv) printf("Done building the graph. Dumping it.\n"); dump_ir_block_graph (irg, 0); - printf("use xvcg to view this graph:\n"); - printf("/ben/goetz/bin/xvcg GRAPHNAME\n\n"); + printf("Use ycomp to view this graph:\n"); + printf("ycomp GRAPHNAME\n\n"); return (0); }