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

  /external/llvm/include/llvm/CodeGen/
MachineBasicBlock.h 91 /// IsLandingPad - Indicate that this basic block is entered via an
93 bool IsLandingPad;
321 /// isLandingPad - Returns true if the block is a landing pad. That is
323 bool isLandingPad() const { return IsLandingPad; }
327 void setIsLandingPad(bool V = true) { IsLandingPad = V; }
  /external/llvm/lib/CodeGen/
MachineBasicBlock.cpp 39 : BB(bb), Number(-1), xParent(&mf), Alignment(0), IsLandingPad(false),
229 if ((*I)->isLandingPad())
278 if (isLandingPad()) { OS << Comma << "EH LANDING PAD"; Comma = ", "; }
371 if ((*SI)->isLandingPad())
407 if ((*SI)->isLandingPad() || *SI == TBB)
637 if (Succ->isLandingPad())
    [all...]

Completed in 133 milliseconds