X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=testprograms%2Fconst_eval_example.c;h=ba20d8f37798a54f83b15d94487a994c4af7d897;hb=60478f1cd1789370b9f088fa46b13fe71801e126;hp=a8e16359ddb0cf067e25599ba658775602b4e33c;hpb=c201fe69b5fcb5a8430afafe2e15946cab4e45c4;p=libfirm diff --git a/testprograms/const_eval_example.c b/testprograms/const_eval_example.c index a8e16359d..ba20d8f37 100644 --- a/testprograms/const_eval_example.c +++ b/testprograms/const_eval_example.c @@ -6,6 +6,10 @@ ** testprogram */ +#include +# include + +# include "irvrfy.h" # include "irdump.h" # include "firm.h" @@ -25,9 +29,10 @@ int main(void) { + type *prim_t_int; ir_graph *irg; - type_class *owner; - type_method *method; /* the type of this method */ + type *owner; + type *method; /* the type of this method */ entity *ent; ir_node *a, *b, *c, *d, *x; @@ -35,6 +40,9 @@ main(void) init_firm (); + /*** Make basic type information for primitive type int. ***/ + prim_t_int = new_type_primitive(id_from_str ("int", 3), mode_i); + /* Try both optimizations: */ set_opt_constant_folding(1); set_opt_cse(1); @@ -42,7 +50,9 @@ main(void) owner = new_type_class (id_from_str ("CONST_EVAL_EXAMPLE", 18)); method = new_type_method (id_from_str("main", 4), 0, 2); - ent = new_entity ((type *)owner, id_from_str ("main", 4), (type *)method); + set_method_res_type(method, 0, prim_t_int); + set_method_res_type(method, 1, prim_t_int); + ent = new_entity (owner, id_from_str ("main", 4), method); irg = new_ir_graph (ent, 4); @@ -77,13 +87,15 @@ main(void) add_in_edge (get_irg_end_block(irg), x); mature_block (get_irg_end_block(irg)); + finalize_cons (irg); + printf("Optimizing ...\n"); dead_node_elimination(irg); - printf("Done building the graph. Dumping it.\n"); /* verify the graph */ irg_vrfy(irg); + printf("Done building the graph. Dumping it.\n"); dump_ir_block_graph (irg); printf("use xvcg to view this graph:\n");