Searched defs:MatchSelectFromAndOr (Results 1 - 1 of 1) sorted by relevance

/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp1531 /// MatchSelectFromAndOr - We have an expression of the form (A&C)|(B&D). Check
1534 static Instruction *MatchSelectFromAndOr(Value *A, Value *B, function
2032 if (Instruction *Match = MatchSelectFromAndOr(A, B, C, D))
2034 if (Instruction *Match = MatchSelectFromAndOr(B, A, D, C))
2036 if (Instruction *Match = MatchSelectFromAndOr(C, B, A, D))
2038 if (Instruction *Match = MatchSelectFromAndOr(D, A, B, C))

Completed in 91 milliseconds