Message-ID: <373CF57B.26420302@go.ro> Date: Sat, 15 May 1999 07:18:03 +0300 From: Radu Georgescu aka skoola X-Mailer: Mozilla 4.04 [en] (Win95; I) MIME-Version: 1.0 To: djgpp AT delorie DOT com Subject: Re: using labels in inline asm References: <373C449D DOT 634F609B AT magix DOT com DOT sg> <373DA607 DOT DE176590 AT unb DOT ca> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Reply-To: djgpp AT delorie DOT com > You can use "local labels". The catch is that local labels need to be > numeric labels (only numbers). It might be easier to just change the label > names, why do you need to reuse label names? there is another problem: if the compiler expands this kind of function inline, it will complain for redefined label. using numeric labels will solve this kind of problem too?