From d01eb713204e91d6deea2affb17189e1eaafd1b2 Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Tue, 27 Dec 2005 10:15:36 +0000 Subject: [PATCH] renamed is_subclass_of -> is_SubClasss_of [r7144] --- ir/ir/irnode.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ir/ir/irnode.c b/ir/ir/irnode.c index c767793fa..5a8a7b26f 100644 --- a/ir/ir/irnode.c +++ b/ir/ir/irnode.c @@ -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 -- 2.20.1