From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 2335 invoked by alias); 4 Nov 2014 09:37:24 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Received: (qmail 2319 invoked by uid 48); 4 Nov 2014 09:37:19 -0000 From: "pavel.kral at omsquare dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/63732] New: constexpr is not constant expression, when cast member data pointer to data parent type Date: Tue, 04 Nov 2014 09:37:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 4.9.2 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pavel.kral at omsquare dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2014-11/txt/msg00167.txt.bz2 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63732 Bug ID: 63732 Summary: constexpr is not constant expression, when cast member data pointer to data parent type Product: gcc Version: 4.9.2 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: pavel.kral at omsquare dot com The code bellow returns error on 4.9.2 (and cause ICE on 4.8.x) tested on Linux, MinGW and arm-none-eabi. While 'xxx' compiles just fine, 'yyy' which is casted to parent type doesn't. Just for clarification static const array 'm_members' compiles fine and generate values at compile time in .rodata section as expected (arm-none-eabi). class PropertyBase {}; class Number : PropertyBase {}; class ComplexProperty : PropertyBase { public: Number m_firstNumber; static PropertyBase ComplexProperty::* const m_members[]; // compiles fine static constexpr auto xxx = (Number ComplexProperty::*)&ComplexProperty::m_firstNumber; // error: '(PropertyBase ComplexProperty::*)&ComplexProperty::m_firstNumber' is not a constant expression static constexpr auto yyy = (PropertyBase ComplexProperty::*)&ComplexProperty::m_firstNumber; }; // compiles fine PropertyBase ComplexProperty::* const ComplexProperty::m_members[] = { (PropertyBase ComplexProperty::*) &ComplexProperty::m_firstNumber }; static ComplexProperty person; int main() { }