This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug inline-asm/13721] SEGV on inline functions
- From: "pinskia at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 18 Jan 2004 09:25:28 -0000
- Subject: [Bug inline-asm/13721] SEGV on inline functions
- References: <20040117170117.13721.ysato@users.sourceforge.jp>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From pinskia at gcc dot gnu dot org 2004-01-18 09:25 -------
The warning is correct:
"+m"(*b_addr) :"m"(*b_addr)
really should be:
"=m"(*b_addr) :"m"(*b_addr)
--
What |Removed |Added
----------------------------------------------------------------------------
Component|c |inline-asm
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=13721