*** empty log message ***
[libfirm] / testprograms / float_example.c
index a3994e1..395161b 100644 (file)
@@ -1,9 +1,14 @@
-/* Copyright (C) 1998 - 2000 by Universitaet Karlsruhe
-* All rights reserved.
-*
-* Authors: Christian Schaefer, Goetz Lindenmaier
-*
-*/
+/*
+ * Project:     libFIRM
+ * File name:   testprograms/float_example.c
+ * Purpose:
+ * Author:      Christian Schaefer, Goetz Lindenmaier
+ * Modified by:
+ * Created:
+ * CVS-ID:      $Id$
+ * Copyright:   (c) 1999-2003 Universität Karlsruhe
+ * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
+ */
 
 # include <stdio.h>
 # include <string.h>
@@ -34,7 +39,7 @@ int main(int argc, char **argv)
   ir_node  *x;          /* to build control flow */
   tarval *tv;
 
-  printf("\nCreating an IR graph: EMPTY...\n");
+  printf("\nCreating an IR graph: FLOAT EXAMPLE...\n");
 
   /* init library */
   init_firm (NULL);
@@ -48,7 +53,7 @@ int main(int argc, char **argv)
    */
   owner = get_glob_type();
 
-#define METHODNAME "main"
+#define METHODNAME "FLOAT_EXAMPLE_main"
 #define NRARGS 0
 #define NRES 1
   /* The type of the method */
@@ -73,7 +78,7 @@ int main(int argc, char **argv)
 #define NUM_OF_LOCAL_VARS 0
   irg = new_ir_graph (ent, NUM_OF_LOCAL_VARS);
 
-  tv = tarval_d_from_str ("12345678901234567890.1234567890", 31);
+  tv = new_tarval_from_str ("12345678901234567890.1234567890", 31, mode_D);