OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:isLandingPad
(Results
1 - 2
of
2
) sorted by null
/external/llvm/lib/IR/
BasicBlock.cpp
358
///
isLandingPad
- Return true if this basic block is a landing pad. I.e., it's
360
bool BasicBlock::
isLandingPad
() const {
/external/llvm/include/llvm/CodeGen/
MachineBasicBlock.h
90
///
IsLandingPad
- Indicate that this basic block is entered via an
92
bool
IsLandingPad
;
329
///
isLandingPad
- Returns true if the block is a landing pad. That is
331
bool
isLandingPad
() const { return
IsLandingPad
; }
335
void setIsLandingPad(bool V = true) {
IsLandingPad
= V; }
Completed in 40 milliseconds