Commit aa8f5c20 by Andrew Pinski Committed by Andrew Pinski

class.c (build_base_path): Fix typo.

2005-07-21  Andrew Pinski  <pinskia@physics.uc.edu>

        * class.c (build_base_path): Fix typo.

From-SVN: r102245
parent e2fe73f6
2005-07-21 Andrew Pinski <pinskia@physics.uc.edu> 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 PR C++/22358
* class.c (build_base_path): Convert BINFO_OFFSET to the correct type. * class.c (build_base_path): Convert BINFO_OFFSET to the correct type.
......
...@@ -365,8 +365,8 @@ build_base_path (enum tree_code code, ...@@ -365,8 +365,8 @@ build_base_path (enum tree_code code,
build2 (EQ_EXPR, boolean_type_node, build2 (EQ_EXPR, boolean_type_node,
current_in_charge_parm, integer_zero_node), current_in_charge_parm, integer_zero_node),
v_offset, v_offset,
convet_to_integer (ptrdiff_type_node, convert_to_integer (ptrdiff_type_node,
BINFO_OFFSET (binfo))); BINFO_OFFSET (binfo)));
else else
offset = v_offset; offset = v_offset;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment