https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100907

Tobias Burnus <burnus at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |burnus at gcc dot gnu.org

--- Comment #10 from Tobias Burnus <burnus at gcc dot gnu.org> ---
(In reply to sandra from comment #9)
> Jose's test case for this issue is still failing.

Which is not surpising:
  sz = (size_t)auxp->elem_len / sizeof (char);

for kind=4 character of len=1 and len=7 gives sz=4 and sz=28.

The testcase should have used:
  sz = (size_t)auxp->elem_len / sizeof (CFI_type_ucs4_char);

Or expect 4 and 28 instead of 1 and 7 as result ...

Reply via email to