Displaying 3 results from an estimated 3 matches for "signedcharty".
2013 Oct 02
2
[LLVMdev] [CLang] Comparing vector types - invalid error and proposed fix
...the fragment:
if (TypeSize == Context.getTypeSize(Context.CharTy))
return Context.getExtVectorType(Context.CharTy,
VTy->getNumElements());
^^^^^^
with:
if (TypeSize == Context.getTypeSize(Context.CharTy))
return Context.getExtVectorType(Context.SignedCharTy,
VTy->getNumElements());
^^^^^^^^^^^^
I would like to propose this as a fix for a future release of CLang.
Thanks,
Martin O'Riordan - Movidius Ltd.
2013 Oct 02
0
[LLVMdev] [CLang] Comparing vector types - invalid error and proposed fix
...= Context.getTypeSize(Context.CharTy))
> return Context.getExtVectorType(Context.CharTy,
> VTy->getNumElements());
> ^^^^^^
> with:
> if (TypeSize == Context.getTypeSize(Context.CharTy))
> return Context.getExtVectorType(Context.SignedCharTy,
> VTy->getNumElements());
> ^^^^^^^^^^^^
>
> I would like to propose this as a fix for a future release of CLang.
>
> Thanks,
>
> Martin O'Riordan - Movidius Ltd.
>
>
> ________________________________________...
2013 Oct 02
0
[LLVMdev] [CLang] Comparing vector types - invalid error and proposed fix
...the fragment:
if (TypeSize == Context.getTypeSize(Context.CharTy))
return Context.getExtVectorType(Context.CharTy,
VTy->getNumElements());
^^^^^^
with:
if (TypeSize == Context.getTypeSize(Context.CharTy))
return Context.getExtVectorType(Context.SignedCharTy,
VTy->getNumElements());
^^^^^^^^^^^^
I would like to propose this as a fix for a future release of CLang.
Thanks,
Martin O'Riordan - Movidius Ltd.