OSDN Git Service

* call.c (build_op_delete_call): Use BASELINK_FUNCTIONS.
[pf3gnuchains/gcc-fork.git] / gcc / cp / call.c
index ed6ab2e..e6f3151 100644 (file)
@@ -3698,7 +3698,7 @@ build_op_delete_call (code, addr, size, flags, placement)
 
       /* Go through the `operator delete' functions looking for one
         with a matching type.  */
-      for (fn = BASELINK_P (fns) ? TREE_VALUE (fns) : fns; 
+      for (fn = BASELINK_P (fns) ? BASELINK_FUNCTIONS (fns) : fns; 
           fn; 
           fn = OVL_NEXT (fn))
        {