This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c++/9844] Segmentation fault using function with return value with attribute for mode
- From: "pinskia at physics dot uc dot edu" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 20 Jul 2003 13:59:24 -0000
- Subject: [Bug c++/9844] Segmentation fault using function with return value with attribute for mode
- References: <20030225052600.9844.wittman@acm.org>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=9844
pinskia at physics dot uc dot edu changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |ice-on-valid-code
Last reconfirmed|2003-05-04 00:00:00 |2003-07-20 13:59:24
date| |
Summary|[x86] Segmentation fault |Segmentation fault using
|using operator function with|function with return value
|intrinsics |with attribute for mode
------- Additional Comments From pinskia at physics dot uc dot edu 2003-07-20 13:59 -------
This bug has nothing to do with vectors at all, it can be reproduced with:
class si
{
operator int __attribute__ ((mode(SI))) ();
};
In fact it has nothing to do with classes at all as this can reproduced with:
__attribute__ ((mode (SI))) int f ();
I have seen a bug like this before (bug 8960 but that is for c).