Displaying 5 results from an estimated 5 matches for "platform_putchar".
2013 Oct 15
2
[LLVMdev] Unwanted push/pop on Cortex-M.
...wrote:
> ---------- Forwarded message ----------
> From: Andrea Mucignat <andrea at nestlabs.com>
> Date: Tue, Oct 15, 2013 at 7:05 AM
> Subject: [LLVMdev] Unwanted push/pop on Cortex-M.
> To: llvmdev at cs.uiuc.edu
>
>
> Hi,
>
> I have this code:
>
> void platform_putchar(int, char);
> void out_char( char ch );
>
> void out_char( char ch )
> {
> platform_putchar (0, ch);
> }
>
> I'm compiling with the following clang invocation:
>
> $ /usr/local/vendor/toolchains/llvm/3.3/armv7m/bin/armv7m-none-eabi-clang
> -mcpu=cortex-m4 -m...
2013 Oct 15
0
[LLVMdev] Unwanted push/pop on Cortex-M.
...t; > From: Andrea Mucignat <andrea at nestlabs.com>
> > Date: Tue, Oct 15, 2013 at 7:05 AM
> > Subject: [LLVMdev] Unwanted push/pop on Cortex-M.
> > To: llvmdev at cs.uiuc.edu
> >
> >
> > Hi,
> >
> > I have this code:
> >
> > void platform_putchar(int, char);
> > void out_char( char ch );
> >
> > void out_char( char ch )
> > {
> > platform_putchar (0, ch);
> > }
> >
> > I'm compiling with the following clang invocation:
> >
> > $ /usr/local/vendor/toolchains/llvm/3.3/armv7m/...
2013 Oct 15
1
[LLVMdev] Unwanted push/pop on Cortex-M.
...--------
>> From: Andrea Mucignat <andrea at nestlabs.com>
>> Date: Tue, Oct 15, 2013 at 7:05 AM
>> Subject: [LLVMdev] Unwanted push/pop on Cortex-M.
>> To: llvmdev at cs.uiuc.edu
>>
>>
>> Hi,
>>
>> I have this code:
>>
>> void platform_putchar(int, char);
>> void out_char( char ch );
>>
>> void out_char( char ch )
>> {
>> platform_putchar (0, ch);
>> }
>>
>> I'm compiling with the following clang invocation:
>>
>> $ /usr/local/vendor/toolchains/llvm/3.3/armv7m/bin/armv7m...
2013 Oct 15
0
[LLVMdev] Unwanted push/pop on Cortex-M.
Hi,
I have this code:
void platform_putchar(int, char);
void out_char( char ch );
void out_char( char ch )
{
platform_putchar (0, ch);
}
I'm compiling with the following clang invocation:
$ /usr/local/vendor/toolchains/llvm/3.3/armv7m/bin/armv7m-none-eabi-clang
-mcpu=cortex-m4 -mfloat-abi=soft -mthumb -nostdinc -ffreestanding
-ffu...
2013 Oct 21
1
[LLVMdev] [PATCH] Unwanted r11 in push/pop on Cortex-M.
...ate: Tue, Oct 15, 2013 at 7:05 AM
>> >> Subject: [LLVMdev] Unwanted push/pop on Cortex-M.
>> >> To: llvmdev at cs.uiuc.edu
>> >>
>> >>
>> >> Hi,
>> >>
>> >> I have this code:
>> >>
>> >> void platform_putchar(int, char);
>> >> void out_char( char ch );
>> >>
>> >> void out_char( char ch )
>> >> {
>> >> platform_putchar (0, ch);
>> >> }
>> >>
>> >> I'm compiling with the following clang invocation:
>...