avr-libc-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [avr-libc-dev] [RFC] catching misspeeled signal names


From: Dmitry K.
Subject: Re: [avr-libc-dev] [RFC] catching misspeeled signal names
Date: Tue, 20 Apr 2004 16:44:40 +1100
User-agent: KMail/1.5

As 20 April 2004 09:28 Theodore A. Roth wrote:
>
> Attached is an ugly little patch that allows gcc to catch misspeeled
> signal names.
>

Yes, it works.

But this solution is not acceptable for asm's programs.
For example:

   .globl SIG_INTERRUPT0
   SIG_INTERRUPT0:
      ...

was preprocessing to:

   .globl __vector_1
   __vector_1:
      ...

But now (after patch) the word `SIG_INTERRUPT0'
is remaining without changes.  (It do not produce
error due to absence of round brackets).

MOST OF INTERRUPT SERVICE ROUTINES ARE ASSEMBLER ONES.

Best regards.





reply via email to

[Prev in Thread] Current Thread [Next in Thread]