From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6965 invoked by alias); 5 Aug 2014 12:25:02 -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 6582 invoked by uid 48); 5 Aug 2014 12:24:59 -0000 From: "ysrumyan at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/62021] New: ICE in verify_gimple_assign_single Date: Tue, 05 Aug 2014 12:25:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 4.10.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: ysrumyan at gmail 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-08/txt/msg00281.txt.bz2 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=62021 Bug ID: 62021 Summary: ICE in verify_gimple_assign_single Product: gcc Version: 4.10.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: tree-optimization Assignee: unassigned at gcc dot gnu.org Reporter: ysrumyan at gmail dot com For attached simple test-case if we omit 'uniform' specification compiler produces ICE: error: incorrect type of vector CONSTRUCTOR elements Note that for stmt _38 = {vect_cst_.62_39, vect_cst_.62_39}; we have type mismatch - type of rhs constructor element is vector(2) long unsigned int whereas type of lhs is vector(4) float*. If we add 'uniform' specification (through -DUNIFORM option) test compiles successfully. I assume that ICE must be fixed.