Displaying 2 results from an estimated 2 matches for "919d9b1c".
2020 Mar 28
2
How to add new AVR targets?
Hi Dylan,
the following code
volatile uint8_t v1;
volatile uint8_t v2;
__attribute__((interrupt)) void __vector_21(void)  {
    v2 = v1;
}
produces in C mode:
00000092 <__vector_21>:
92:   80 91 61 00     lds     r24, 0x0061     ; 0x800061 <v1>
96:   80 93 60 00     sts     0x0060, r24     ; 0x800060 <__data_end>
9a:   08 95           ret
and in C++ mode:
00000074
2020 Mar 30
2
How to add new AVR targets?
...> LLVM Developers mailing list
> > llvm-dev at lists.llvm.org
> > https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev
> >
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20200331/919d9b1c/attachment-0001.html>