bugfix: method names wrong
authorGötz Lindenmaier <goetz@ipd.info.uni-karlsruhe.de>
Wed, 26 Mar 2003 13:32:53 +0000 (13:32 +0000)
committerGötz Lindenmaier <goetz@ipd.info.uni-karlsruhe.de>
Wed, 26 Mar 2003 13:32:53 +0000 (13:32 +0000)
[r991]

ir/ir/irmode.c
ir/ir/irmode.h

index 826b7e8..76af6b9 100644 (file)
@@ -140,7 +140,7 @@ INLINE ir_mode *get_modeBB() { ANNOUNCE(); return mode_BB; }
 
 /* ** Constructor ** */
 ir_mode *
-mode_register(ir_mode* new_mode)
+register_mode(ir_mode* new_mode)
 {
   ir_mode *mode;
 
index 1b14e06..1c9685d 100644 (file)
@@ -99,7 +99,7 @@ typedef enum {
                        Floating point computations can be performed. */
   reference,         /* A mode to represent entities.
                        Restricted int computations can be performed */
-  character,         /* A mode to represent characters/symbols
+  character          /* A mode to represent characters/symbols
                        ?? Are computations allowed? as int?? */
 } mode_sort;
 
@@ -181,11 +181,11 @@ tarval *get_mode_one(ir_mode *mode);
 
 /* This is only valid for float_numbers, other modes
  * will result in tarval_bad */
-tarval *get_mode_infinit(ir_mode *mode);
+tarval *get_mode_infinite(ir_mode *mode);
 
 /* This is only valid for float_numbers, other modes
  * will result in tarval_bad */
-tarval *get_mode_nan(ir_mode *mode);
+tarval *get_mode_NAN(ir_mode *mode);
 
 
 /** Auxiliary modes necessary for the Firm representation **/