Displaying 6 results from an estimated 6 matches for "charty".
Did you mean:
chart
2013 Oct 02
2
[LLVMdev] [CLang] Comparing vector types - invalid error and proposed fix
...roublesome, though in C++ it is a discrete type. I made
the following change in my copy (clang-3.3) that I think is a correct and
valid change:
File: tools/clang/lib/Sema/SemaChecking.cpp
Function: Sema::GetSignedVectorType()
Replace 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());...
2009 Dec 16
0
FW: Import a SAN cloned disk
-----Original Message-----
From: Bone, Nick
Sent: 16 December 2009 16:33
To: oab
Subject: RE: [zfs-discuss] Import a SAN cloned disk
Hi
I know that EMC don''t recommend a SnapView snapshot being added to the original hosts Storage Group although it is not prevented.
I tried this just now & assigning the Clariion snapshot of the pool LUN to the same host. Although the snapshot LUN
2012 Jul 04
2
[LLVMdev] Bogus assert in VMCore/Instructions.cpp CallInst::Create?
...me code that tried to insert calls to the
llvm.annotation intrinsic function, which has a signature of (i32,
i8*, i8*, i32). The code is below.
void addAnnotation( BasicBlock *block, Function *F)
{
string foo = "foo";
string bar = "barr";
Type *charTy = Type::getInt8Ty(block->getContext());
ArrayType *s1Ty = ArrayType::get(charTy, foo.size()+1);
ArrayType *s2Ty = ArrayType::get(charTy, bar.size()+1);
Constant *ar1 = ConstantArray::get(block->getContext(), foo);
Constant *ar2 = ConstantArray::get(block->getCon...
2013 Oct 02
0
[LLVMdev] [CLang] Comparing vector types - invalid error and proposed fix
...pe. I made
> the following change in my copy (clang-3.3) that I think is a correct and
> valid change:
>
> File: tools/clang/lib/Sema/SemaChecking.cpp
> Function: Sema::GetSignedVectorType()
>
> Replace 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->getNumEle...
2012 Jul 04
0
[LLVMdev] Bogus assert in VMCore/Instructions.cpp CallInst::Create?
...llvm.annotation intrinsic function, which has a signature of (i32,
> i8*, i8*, i32). The code is below.
>
> void addAnnotation( BasicBlock *block, Function *F)
> {
> string foo = "foo";
> string bar = "barr";
>
> Type *charTy = Type::getInt8Ty(block->getContext());
>
> ArrayType *s1Ty = ArrayType::get(charTy, foo.size()+1);
> ArrayType *s2Ty = ArrayType::get(charTy, bar.size()+1);
>
> Constant *ar1 = ConstantArray::get(block->getContext(), foo);
> Constant *ar2 = Con...
2013 Oct 02
0
[LLVMdev] [CLang] Comparing vector types - invalid error and proposed fix
...roublesome, though in C++ it is a discrete type. I made
the following change in my copy (clang-3.3) that I think is a correct and
valid change:
File: tools/clang/lib/Sema/SemaChecking.cpp
Function: Sema::GetSignedVectorType()
Replace 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());...