You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@stdcxx.apache.org by "Martin Sebor (JIRA)" <ji...@apache.org> on 2007/11/07 22:54:50 UTC

[jira] Commented: (STDCXX-490) [IBM XLC++ 9.0] ICE on placement new and explicit dtor invocation

    [ https://issues.apache.org/jira/browse/STDCXX-490?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12540905 ] 

Martin Sebor commented on STDCXX-490:
-------------------------------------

-------- Original Message --------
Subject: Re: PMR 30355,756,000
Date: Mon, 5 Nov 2007 14:04:29 -0500
From: Lowell Crotin <la...@ca.ibm.com>
To: martin.sebor@roguewave.com

Hi Martin,

I'm happy to announce that the XL C/C++ Enterprise Edition V9.0 for AIX
October 2007 PTF is now available.  Below are links to the compiler and
runtime PTFs:

October 2007 PTF for XL C/C++ Enterprise Edition for AIX, V9.0
http://www.ibm.com/support/docview.wss?uid=swg24017394

October 2007 IBM C++ Runtime Environment Components for AIX
http://www.ibm.com/support/docview.wss?uid=swg24017393


Please apply this PTF and confirm that the issue has been resolved.  I will
contact you again on Monday, November 12, 2007, if I have not heard from
you by then.  If you have any questions or concerns, I would be happy to
help.

Regards,
Lowell Crotin
IBM XL C, C++, and Fortran Compilers Service Team
IBM Software Group - Toronto Lab
+1 905-413-3184


> [IBM XLC++ 9.0] ICE on placement new and explicit dtor invocation
> -----------------------------------------------------------------
>
>                 Key: STDCXX-490
>                 URL: https://issues.apache.org/jira/browse/STDCXX-490
>             Project: C++ Standard Library
>          Issue Type: Bug
>          Components: External
>         Environment: IBM XL C/C++ 9.0 on AIX
>            Reporter: Martin Sebor
>
> $ cat t.cpp && xlC -qversion && xlC t.cpp
> #include <new>
> template <int> struct S { S () { } template <int N> S (S<N>) { } };
> int main ()
> {
>     typedef S<1> B;
>     unsigned char buf [sizeof (B)] = "";
>     B* b = new (buf) B (S<2>());
>     for (int i = 0; i < sizeof buf; ++i);
>     b->~B ();
> }
> IBM XL C/C++ Enterprise Edition for AIX, V9.0
> Version: 09.00.0000.0000
> /nfs/packages/mdx/aix/compilers/5.2.0/va90/root/usr/vacpp/bin/.orig/xlC: 1501-230 (S) Internal compiler error; please contact your Service Representative

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.