HomeSort by relevance Sort by last modified time
    Searched refs:NotZero (Results 1 - 3 of 3) sorted by null

  /external/clang/lib/CodeGen/
CGBuiltin.cpp 528 BasicBlock *NotZero = createBasicBlock("fpclassify_not_zero", this->CurFn);
529 Builder.CreateCondBr(IsZero, End, NotZero);
533 Builder.SetInsertPoint(NotZero);
538 Result->addIncoming(NanLiteral, NotZero);
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp 137 SDValue NotZero = N->getOperand(i);
139 if (isa<ConstantSDNode>(NotZero)) {
140 if (cast<ConstantSDNode>(NotZero)->getAPIntValue().countTrailingOnes() <
143 } else if (isa<ConstantFPSDNode>(NotZero)) {
144 if (cast<ConstantFPSDNode>(NotZero)->getValueAPF()
154 if (N->getOperand(i) != NotZero &&
    [all...]
LegalizeIntegerTypes.cpp     [all...]

Completed in 85 milliseconds