[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.
- [avr-libc-dev] [RFC] catching misspeeled signal names, Theodore A. Roth, 2004/04/19
- Re: [avr-libc-dev] [RFC] catching misspeeled signal names, E. Weddington, 2004/04/19
- Re: [avr-libc-dev] [RFC] catching misspeeled signal names, Theodore A. Roth, 2004/04/19
- Re: [avr-libc-dev] [RFC] catching misspeeled signal names,
Dmitry K. <=
- Re: [avr-libc-dev] [RFC] catching misspeeled signal names, Joerg Wunsch, 2004/04/20
- Re: [avr-libc-dev] [RFC] catching misspeeled signal names, Theodore A. Roth, 2004/04/20
- Re: [avr-libc-dev] [RFC] catching misspeeled signal names, Theodore A. Roth, 2004/04/20
- Re: [avr-libc-dev] [RFC] catching misspeeled signal names, Dmitry K., 2004/04/21
- Re: [avr-libc-dev] [RFC] catching misspeeled signal names, Theodore A. Roth, 2004/04/21
- Re: [avr-libc-dev] [RFC] catching misspeeled signal names, Theodore A. Roth, 2004/04/21
- Re: [avr-libc-dev] [RFC] catching misspeeled signal names, Dmitry K., 2004/04/21
- Re: [avr-libc-dev] [RFC] catching misspeeled signal names, Theodore A. Roth, 2004/04/20