OSDN Git Service

2005-07-21 Andrew Pinski <pinskia@physics.uc.edu>
authorpinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 21 Jul 2005 19:43:47 +0000 (19:43 +0000)
committerpinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 21 Jul 2005 19:43:47 +0000 (19:43 +0000)
        * class.c (build_base_path): Fix typo.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@102245 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/cp/ChangeLog
gcc/cp/class.c

index e464a66..de5f284 100644 (file)
@@ -1,5 +1,9 @@
 2005-07-21  Andrew Pinski  <pinskia@physics.uc.edu>
 
+       * class.c (build_base_path): Fix typo.
+
+2005-07-21  Andrew Pinski  <pinskia@physics.uc.edu>
+
        PR C++/22358
        * class.c (build_base_path): Convert BINFO_OFFSET to the correct type.
 
index e60cc8b..c069d5f 100644 (file)
@@ -365,8 +365,8 @@ build_base_path (enum tree_code code,
                         build2 (EQ_EXPR, boolean_type_node,
                                 current_in_charge_parm, integer_zero_node),
                         v_offset,
-                        convet_to_integer (ptrdiff_type_node,
-                                           BINFO_OFFSET (binfo)));
+                        convert_to_integer (ptrdiff_type_node,
+                                            BINFO_OFFSET (binfo)));
       else
        offset = v_offset;
     }