Newsgroups: comp.os.msdos.djgpp Date: Wed, 21 May 1997 17:17:47 +0200 (METDST) From: Jens Egeblad To: Jimmy OBERTAN cc: djgpp Subject: Re: -O3 and inline ASM In-Reply-To: <199705201026.MAA26458@ippc67.cicrp.jussieu.fr> Message-ID: References: <199705201026 DOT MAA26458 AT ippc67 DOT cicrp DOT jussieu DOT fr> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Precedence: bulk On Tue, 20 May 1997, Jimmy OBERTAN wrote: > Hi! > > > I've tried to optimize my code containing inline assembly with labels. > > WITH -O3 the labels are only duplicated! > The labels must be specified as local labels. This can be done by beginning them with an l. Say you have a label such as "Textureloop" then if that label should be local, you would write it "Ltextureloop". I think. It works for me anyways. > Can something be done for this? > > > Bye! > > Jens