diff options
author | Dale Johannesen <dalej@apple.com> | 2010-04-02 21:49:27 +0000 |
---|---|---|
committer | Dale Johannesen <dalej@apple.com> | 2010-04-02 21:49:27 +0000 |
commit | 7249ef04557cc6f9af7b6df93728683be3b65048 (patch) | |
tree | 4379fc07cd2190fe45784617ddb787cc89d9b28a /lib/CodeGen/DwarfEHPrepare.cpp | |
parent | a144c3f34dd8adc093d9be6cbc3e6f39d47c75dd (diff) | |
download | external_llvm-7249ef04557cc6f9af7b6df93728683be3b65048.tar.gz external_llvm-7249ef04557cc6f9af7b6df93728683be3b65048.tar.bz2 external_llvm-7249ef04557cc6f9af7b6df93728683be3b65048.zip |
Skip debug info when looking for existing EH calls at the
beginning of a block.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100230 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/DwarfEHPrepare.cpp')
-rw-r--r-- | lib/CodeGen/DwarfEHPrepare.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/DwarfEHPrepare.cpp b/lib/CodeGen/DwarfEHPrepare.cpp index 8bae9edde7..7dbfd7d168 100644 --- a/lib/CodeGen/DwarfEHPrepare.cpp +++ b/lib/CodeGen/DwarfEHPrepare.cpp @@ -661,7 +661,7 @@ bool DwarfEHPrepare::PromoteStackTemporaries() { /// the start of the basic block (unless there already is one, in which case /// the existing call is returned). Instruction *DwarfEHPrepare::CreateExceptionValueCall(BasicBlock *BB) { - Instruction *Start = BB->getFirstNonPHI(); + Instruction *Start = BB->getFirstNonPHIOrDbg(); // Is this a call to eh.exception? if (IntrinsicInst *CI = dyn_cast<IntrinsicInst>(Start)) if (CI->getIntrinsicID() == Intrinsic::eh_exception) @@ -681,7 +681,7 @@ Instruction *DwarfEHPrepare::CreateExceptionValueCall(BasicBlock *BB) { /// (creating it if necessary) at the start of the basic block (unless /// there already is a load, in which case the existing load is returned). Instruction *DwarfEHPrepare::CreateValueLoad(BasicBlock *BB) { - Instruction *Start = BB->getFirstNonPHI(); + Instruction *Start = BB->getFirstNonPHIOrDbg(); // Is this a load of the exception temporary? if (ExceptionValueVar) if (LoadInst* LI = dyn_cast<LoadInst>(Start)) |