Displaying 4 results from an estimated 4 matches for "pr14393".
Did you mean:
pr14333
2012 Nov 20
0
[LLVMdev] Extended Inline asm with double data type crashes clang
I reported http://llvm.org/pr14393 to track it.
On 20 November 2012 05:18, rajesh viswabramana
<viswabramana.rajesh at gmail.com> wrote:
> Hi,
>
> Clang crashes when below snippet of code is compiled (used latest svn
> version)
>
> double func1()
> {
> double x ;
> asm ( "" : "=r&...
2012 Nov 20
2
[LLVMdev] Extended Inline asm with double data type crashes clang
Hi,
Clang crashes when below snippet of code is compiled (used latest svn
version)
*double func1()
{
double x ;*
* asm ( "" : "=r"(x) : "0"(x) );
return x;
}*
> *clang -S test1.c*
> *Assertion failed: (PartVT.isInteger() || PartVT == MVT::x86mmx) &&
ValueVT.isInteger() && "Unknown mismatch!", file
2012 Nov 21
2
[LLVMdev] Extended Inline asm with double data type crashes clang
Thanks Rafael,
Hello All,
Could anyone please comment, which part in selectiondag need to be
understood/modified to fix this.
Regards,
Rajesh
On Wed, Nov 21, 2012 at 2:38 AM, Rafael EspĂndola <
rafael.espindola at gmail.com> wrote:
> I reported http://llvm.org/pr14393 to track it.
>
> On 20 November 2012 05:18, rajesh viswabramana
> <viswabramana.rajesh at gmail.com> wrote:
> > Hi,
> >
> > Clang crashes when below snippet of code is compiled (used latest svn
> > version)
> >
> > double func1()
> > {
>...
2012 Nov 22
0
[LLVMdev] Extended Inline asm with double data type crashes clang
...ld anyone please comment, which part in selectiondag need to be
> understood/modified to fix this.
>
> Regards,
> Rajesh
>
>
>
>
> On Wed, Nov 21, 2012 at 2:38 AM, Rafael EspĂndola <
> rafael.espindola at gmail.com> wrote:
>
>> I reported http://llvm.org/pr14393 to track it.
>>
>> On 20 November 2012 05:18, rajesh viswabramana
>> <viswabramana.rajesh at gmail.com> wrote:
>> > Hi,
>> >
>> > Clang crashes when below snippet of code is compiled (used latest svn
>> > version)
>> >
>> &...