HomeSort by: relevance | last modified time | path
    Searched defs:Cond0 (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
LibCallsShrinkWrap.cpp 477 Value *Cond0 = BBBuilder.CreateFCmp(CmpInst::FCMP_OLE, Base, V0);
478 return BBBuilder.CreateOr(Cond0, Cond);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp 9433 // select (and Cond0, Cond1), X, Y
9434 // -> select Cond0, (select Cond1, X, Y), Y
9436 SDValue Cond0 = N0->getOperand(0);
9441 return DAG.getNode(ISD::SELECT, DL, N1.getValueType(), Cond0,
9447 // select (or Cond0, Cond1), X, Y -> select Cond0, X, (select Cond1, X, Y)
9449 SDValue Cond0 = N0->getOperand(0);
9454 return DAG.getNode(ISD::SELECT, DL, N1.getValueType(), Cond0, N1,
9461 // select Cond0, (select Cond1, X, Y), Y -> select (and Cond0, Cond1), X,
    [all...]

Completed in 22 milliseconds