diff options
Diffstat (limited to 'llvm/lib/IR/BasicBlock.cpp')
-rw-r--r-- | llvm/lib/IR/BasicBlock.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/llvm/lib/IR/BasicBlock.cpp b/llvm/lib/IR/BasicBlock.cpp index 8eaa6e5..dca42a5 100644 --- a/llvm/lib/IR/BasicBlock.cpp +++ b/llvm/lib/IR/BasicBlock.cpp @@ -371,6 +371,13 @@ const Instruction* BasicBlock::getFirstNonPHI() const { return nullptr; } +Instruction *BasicBlock::getFirstNonPHI() { + for (Instruction &I : *this) + if (!isa<PHINode>(I)) + return &I; + return nullptr; +} + BasicBlock::const_iterator BasicBlock::getFirstNonPHIIt() const { for (const Instruction &I : *this) { if (isa<PHINode>(I)) |