renamed is_subclass_of -> is_SubClasss_of
authorMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Tue, 27 Dec 2005 10:15:36 +0000 (10:15 +0000)
committerMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Tue, 27 Dec 2005 10:15:36 +0000 (10:15 +0000)
[r7144]

ir/ir/irnode.c

index c767793..5a8a7b2 100644 (file)
@@ -1423,7 +1423,7 @@ int is_Cast_upcast(ir_node *node) {
   assert(fromtype);
 
   if (!is_Class_type(totype)) return 0;
-  return is_subclass_of(fromtype, totype);
+  return is_SubClass_of(fromtype, totype);
 }
 
 /* Checks for downcast.
@@ -1445,7 +1445,7 @@ int is_Cast_downcast(ir_node *node) {
   assert(fromtype);
 
   if (!is_Class_type(totype)) return 0;
-  return is_subclass_of(totype, fromtype);
+  return is_SubClass_of(totype, fromtype);
 }
 
 int