Date: Thu, 19 Jul 2001 19:22:43 +0300 (IDT) From: Eli Zaretskii X-Sender: eliz AT is To: Susana Moreno cc: djgpp AT delorie DOT com Subject: Re: Error: Parse error before ':' In-Reply-To: <3B56C3D8.2A9E81F3@wol.es> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Thu, 19 Jul 2001, Susana Moreno wrote: > I'm trying to include a litle asm code in a .cpp archive. > > double x; > double y; > double retorn; > > _asm__volatile_(" > fld %0\n > fld %1\n > fpatan\n > fstd %2\n > fwait > : > : "g" (x), "g" (y), "g" (retorn) > ); > > When i compile it, this error is reported: > > > Parse error before ':' You need to close the quoted string after fwait: fwait"