From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19179 invoked by alias); 12 Mar 2007 22:38:21 -0000 Received: (qmail 19118 invoked by uid 48); 12 Mar 2007 22:38:08 -0000 Date: Mon, 12 Mar 2007 22:38:00 -0000 Message-ID: <20070312223808.19117.qmail@sourceware.org> X-Bugzilla-Reason: CC References: Subject: [Bug middle-end/30704] [4.2/4.3 Regression] Incorrect constant generation for long long In-Reply-To: Reply-To: gcc-bugzilla@gcc.gnu.org To: gcc-bugs@gcc.gnu.org From: "pinskia at gcc dot gnu dot org" 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 X-SW-Source: 2007-03/txt/msg01132.txt.bz2 ------- Comment #6 from pinskia at gcc dot gnu dot org 2007-03-12 22:38 ------- >>From native_encode_int, we get: (gdb) p/x *(unsigned int[2]*)ptr $14 = {0xffff0f00, 0xffffffff} Which is obviously wrong, it should have encoded it as: {0x000fffff, 0xffffffff} So we get the wrong answer to begin with and it is not an issue with native_interpret_real, at least right at this moment. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30704