added copyright information
[libfirm] / testprograms / const_eval_example.c
index 14ac280..d90f106 100644 (file)
@@ -38,7 +38,7 @@ main(void)
 
   printf("\nCreating an IR graph: CONST_EVAL_EXAMPLE...\n");
 
-  init_firm ();
+  init_firm (NULL);
 
   /*** Make basic type information for primitive type int. ***/
   prim_t_int = new_type_primitive(id_from_str ("int", 3), mode_Is);
@@ -53,11 +53,12 @@ main(void)
   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);
+  get_entity_ld_name(ent);
 
   irg = new_ir_graph (ent, 4);
 
-  a = new_Const (mode_Is, tarval_from_long (mode_Is, 7));
-  b = new_Const (mode_Is, tarval_from_long (mode_Is, 5));
+  a = new_Const (mode_Is, new_tarval_from_long (7, mode_Is));
+  b = new_Const (mode_Is, new_tarval_from_long (5, mode_Is));
 
   x = new_Jmp ();
   mature_block (get_irg_current_block(irg));
@@ -69,11 +70,11 @@ main(void)
   c = new_Proj(c, mode_Is, 2);
   */
 
-  c = new_Add (new_Const (mode_Is, tarval_from_long (mode_Is, 5)),
-              new_Const (mode_Is, tarval_from_long (mode_Is, 7)),
+  c = new_Add (new_Const (mode_Is, new_tarval_from_long (5, mode_Is)),
+              new_Const (mode_Is, new_tarval_from_long (7, mode_Is)),
               mode_Is);
-  d = new_Add (new_Const (mode_Is, tarval_from_long (mode_Is, 7)),
-              new_Const (mode_Is, tarval_from_long (mode_Is, 5)),
+  d = new_Add (new_Const (mode_Is, new_tarval_from_long (7, mode_Is)),
+              new_Const (mode_Is, new_tarval_from_long (5, mode_Is)),
               mode_Is);
 
   {