Date: Sun, 14 Jun 1998 13:45:24 +0300 (IDT) From: Eli Zaretskii To: Ian Chapman cc: Nate Eldredge , djgpp AT delorie DOT com, Xavi Cardona Subject: Re: Re: z80 to 386 In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Precedence: bulk On Fri, 12 Jun 1998, Ian Chapman wrote: > Seems asm is a handoff reserved word/token. Of course, it is! How else do you think inline assembly would work otherwise? If you want to use `asm' as a normal identifier, call gcc with -ansi switch (-posix might also work, although I didn't try). And use __asm__ instead of asm for inline assembly, so -ansi doesn't affect it.