Displaying 2 results from an estimated 2 matches for "destbyteno".
2011 Aug 04
3
[LLVMdev] Multiple one-line bugs in LLVM
...the right of the '&&' operator. Looks like the correct code is
bool NUW = LBO->hasNoUnsignedWrap() && RBO->hasNoUnsignedWrap();
----
lib/Transforms/InstCombine/InstCombineAndOrXor.cpp:1384
if (InputByteNo < ByteValues.size()/2) {
if (ByteValues.size()-1-DestByteNo != InputByteNo)
return true;
} else {
if (ByteValues.size()-1-DestByteNo != InputByteNo)
return true;
}
Note that 'then' and 'else' are the same. It can be a problem or can not.
----
lib/Target/X86/InstPrinter/X86InstComments.cpp:208
case X86::VPERMILPSri:
...
2011 Aug 04
0
[LLVMdev] Multiple one-line bugs in LLVM
...>hasNoUnsignedWrap()&& RBO->hasNoUnsignedWrap();
That is correct. Ivan sent a patch for this too and I applied it.
>
> ----
>
> lib/Transforms/InstCombine/InstCombineAndOrXor.cpp:1384
> if (InputByteNo< ByteValues.size()/2) {
> if (ByteValues.size()-1-DestByteNo != InputByteNo)
> return true;
> } else {
> if (ByteValues.size()-1-DestByteNo != InputByteNo)
> return true;
> }
>
> Note that 'then' and 'else' are the same. It can be a problem or can not.
I've CC'd Chris since he wrote this...