Displaying 2 results from an estimated 2 matches for "assemply".
Did you mean:
assembly
2013 Feb 27
2
[LLVMdev] Mips backend 3.2 va_arg possible bug
...va_end (select);
}
int main(void)
{
test2(1, 2, 3, 4, 5LL, 6, 7LL);
return 0;
}
report is just a function that prints the results.
in main the assemply code seems to be ok but in test2 function does
something that seems to be wrong
i use "llc -march=mipsel -relocation-model=static -asm-verbose
-mattr=+condmov,-muldivadd,+single-float,-fp64,+o32,-bitcount " command
in function we report the values of a long long value then an integ...
2013 Feb 28
0
[LLVMdev] Mips backend 3.2 va_arg possible bug
...lect,L) );
> report( va_arg(select,I) );
> report( va_arg(select,L) );
>
> va_end (select);
> }
>
> int main(void)
> {
> test2(1, 2, 3, 4, 5LL, 6, 7LL);
> return 0;
> }
>
> report is just a function that prints the results.
>
> in main the assemply code seems to be ok but in test2 function does
> something that seems to be wrong
>
>
> i use "llc -march=mipsel -relocation-model=static -asm-verbose
> -mattr=+condmov,-muldivadd,+single-float,-fp64,+o32,-bitcount " command
>
> in function we report the values of a...