From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 2171 invoked by alias); 11 Jul 2004 12:29:40 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Received: (qmail 2164 invoked by uid 48); 11 Jul 2004 12:29:39 -0000 Date: Sun, 11 Jul 2004 12:29:00 -0000 Message-ID: <20040711122939.2163.qmail@sourceware.org> From: "jens dot maurer at gmx dot net" To: gcc-bugs@gcc.gnu.org In-Reply-To: <20030204182601.9573.stefaandr@hotmail.com> References: <20030204182601.9573.stefaandr@hotmail.com> Reply-To: gcc-bugzilla@gcc.gnu.org Subject: [Bug c++/9573] typedef with __attribute__ ((mode(....))) doesnt seem to work inside a struct/class X-Bugzilla-Reason: CC X-SW-Source: 2004-07/txt/msg01126.txt.bz2 List-Id: ------- Additional Comments From jens dot maurer at gmx dot net 2004-07-11 12:29 ------- I would like to point out that the bug still exists in gcc 3.4.0 release and 3.5. Here's another testcase: struct A { typedef int v2si __attribute__((mode(V2SI))); static void f(v2si& v) { v2si a; v = a; } }; typedef int v2si __attribute__((mode(V2SI))); int main() { v2si x; A::f(x); } -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=9573