From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22856 invoked by alias); 27 Feb 2003 14:56:01 -0000 Mailing-List: contact gcc-prs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-prs-owner@gcc.gnu.org Received: (qmail 22836 invoked by uid 71); 27 Feb 2003 14:56:00 -0000 Resent-Date: 27 Feb 2003 14:56:00 -0000 Resent-Message-ID: <20030227145600.22835.qmail@sources.redhat.com> Resent-From: gcc-gnats@gcc.gnu.org (GNATS Filer) Resent-Cc: gcc-prs@gcc.gnu.org, gcc-bugs@gcc.gnu.org, matz@suse.de Resent-Reply-To: gcc-gnats@gcc.gnu.org, aj@suse.de Received: (qmail 17607 invoked by uid 48); 27 Feb 2003 14:52:42 -0000 Message-Id: <20030227145242.17606.qmail@sources.redhat.com> Date: Thu, 27 Feb 2003 14:56:00 -0000 From: aj@suse.de Reply-To: aj@suse.de To: gcc-gnats@gcc.gnu.org Cc: matz@suse.de X-Send-Pr-Version: gnatsweb-2.9.3 (1.1.1.1.2.31) X-GNATS-Notify: matz@suse.de Subject: c++/9878: [Regression 3.3/3.4] error: non-lvalue in unary `&' wrongly issued X-SW-Source: 2003-02/txt/msg01415.txt.bz2 List-Id: >Number: 9878 >Category: c++ >Synopsis: [Regression 3.3/3.4] error: non-lvalue in unary `&' wrongly issued >Confidential: no >Severity: serious >Priority: medium >Responsible: unassigned >State: open >Class: rejects-legal >Submitter-Id: net >Arrival-Date: Thu Feb 27 14:56:00 UTC 2003 >Closed-Date: >Last-Modified: >Originator: Andreas Jaeger >Release: unknown-1.0 >Organization: >Environment: Linux x86 and x86-64, gcc 3.3 from 20030215 and GCC 3.4 from 20030215. >Description: This small C++ program: void f(void) { short x = 0; const int &y = x; } fails to compile with: gee:~/tmp:[0]$ /opt/gcc/3.4-devel/bin/g++ -c t.C t.C: In function `void f()': t.C:4: error: non-lvalue in unary `&' gee:~/tmp:[1]$ /opt/gcc/3.3-devel/bin/g++ -c t.C t.C: In function `void f()': t.C:4: error: non-lvalue in unary `&' GCC 3.2 compiles this fine. IMHO this is valid: according to 8.5.3[#5], the reference is bound to a temporary holding the value of np_ptr_F. Replaceing short by double makes it compile (with two warnings). >How-To-Repeat: compile the small test program. >Fix: >Release-Note: >Audit-Trail: >Unformatted: