search for: foldmskicmp_mask_allzero

Displaying 2 results from an estimated 2 matches for "foldmskicmp_mask_allzero".

2011 Aug 04
3
[LLVMdev] Multiple one-line bugs in LLVM
...cal sub-expressions to the left and to the right of the '&&' operator: CurChar != '\n' && CurChar != '\n'. The second expression should probably be CurChar != '\n'? ---- lib/Transforms/InstCombine/InstCombineAndOrXor.cpp:505     result |= (icmp_eq ? (FoldMskICmp_Mask_AllZeroes |                           FoldMskICmp_Mask_AllZeroes |                           FoldMskICmp_AMask_Mixed |                           FoldMskICmp_BMask_Mixed)                        : (FoldMskICmp_Mask_NotAllZeroes |                           FoldMskICmp_Mask_NotAllZeroes |                      ...
2011 Aug 04
0
[LLVMdev] Multiple one-line bugs in LLVM
...tor: CurChar != '\n'&& CurChar != '\n'. The second expression should > probably be CurChar != '\n'? Chris also added this code, hopefully he will comment. > > ---- > lib/Transforms/InstCombine/InstCombineAndOrXor.cpp:505 > result |= (icmp_eq ? (FoldMskICmp_Mask_AllZeroes | > FoldMskICmp_Mask_AllZeroes | > FoldMskICmp_AMask_Mixed | > FoldMskICmp_BMask_Mixed) > : (FoldMskICmp_Mask_NotAllZeroes | > FoldMskICmp_Mask_NotAll...