Displaying 2 results from an estimated 2 matches for "cmpfint".
Did you mean:
cmp_inv
2007 Jan 19
2
[LLVMdev] Vector comparisons
...]
% llvm-as <<'EOT' >/dev/null
define i1 %cmpvint(<4 x i32> %x, <4 x i32> %y) {
%res = icmp eq <4 x i32> %y, %y
ret %res
}
EOT
llvm-as: <stdin>:2,0: Packed types not supported by icmp instruction
% llvm-as <<'EOT' >/dev/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() |...
2007 Jan 19
0
[LLVMdev] Vector comparisons
.../dev/null
> define i1 %cmpvint(<4 x i32> %x, <4 x i32> %y) {
> %res = icmp eq <4 x i32> %y, %y
> ret %res
> }
> EOT
> llvm-as: <stdin>:2,0: Packed types not supported by icmp instruction
> % llvm-as <<'EOT' >/dev/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 th...