Displaying 1 result from an estimated 1 matches for "_items2".
Did you mean:
_items
2008 Apr 27
1
[LLVMdev] Can't invoke an intrinsic?
..., there is this code:
Assert1(!F->isIntrinsic() || (i == 0 && isa<CallInst>(I)),
"Cannot take the address of an intrinsic!", &I);
This check appears to have a problem with this line:
invoke void @llvm.memcpy.i32( i8* %._items.i.i, i8*
%._items2.i.i, i32 ptrtoint (i32* getelementptr ([0 x i32]* null, i32 0,
i32 4) to i32), i32 1 )
to label %UnifiedReturnBlock unwind label %failure
...in other words, it appears to be implying that it's not OK to use
'invoke' on an intrinsic. Is that correct?
I should...