Displaying 2 results from an estimated 2 matches for "op0ty".
2007 Jan 19
2
[LLVMdev] Vector comparisons
...null
define i1 %cmpfint(<4 x float> %x, <4 x float> %y) {
%res = fcmp oeq <4 x float> %y, %y
ret %res
}
EOT
llvm-as: <stdin>:2,0: Packed types not supported by fcmp instruction
[2] From CmpInst::CmpInst:
// Check that the operands are the right type
assert(Op0Ty->isInteger() || isa<PointerType>(Op0Ty) ||
(isa<PackedType>(Op0Ty) &&
cast<PackedType>(Op0Ty)->getElementType()->isInteger()) &&
"Invalid operand types for ICmp instruction");
...
// Check that the operands...
2007 Jan 19
0
[LLVMdev] Vector comparisons
...> %res = fcmp oeq <4 x float> %y, %y
> ret %res
> }
> EOT
> llvm-as: <stdin>:2,0: Packed types not supported by fcmp instruction
>
>
>
>
> [2] From CmpInst::CmpInst:
>
>
> // Check that the operands are the right type
> assert(Op0Ty->isInteger() || isa<PointerType>(Op0Ty) ||
> (isa<PackedType>(Op0Ty) &&
> cast<PackedType>(Op0Ty)->getElementType()->isInteger()) &&
> "Invalid operand types for ICmp instruction");
> ...
> // C...