commit | 50b6e33584f4e4cf75c7795b1f1a90731861c825 | [log] [tgz] |
---|---|---|
author | Devang Patel <dpatel@apple.com> | Tue Oct 27 22:16:29 2009 +0000 |
committer | Devang Patel <dpatel@apple.com> | Tue Oct 27 22:16:29 2009 +0000 |
tree | 1ae76dc6ddfc8b31bfd97e7f273756780cb7cdb4 | |
parent | eef55dc3fdebf915128e5d3848f372c7db6c38e8 [diff] [blame] |
Factor out redundancy from clone() implementations. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85327 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Transforms/Utils/BasicBlockUtils.cpp b/lib/Transforms/Utils/BasicBlockUtils.cpp index 35907fd..c2c662f 100644 --- a/lib/Transforms/Utils/BasicBlockUtils.cpp +++ b/lib/Transforms/Utils/BasicBlockUtils.cpp
@@ -675,7 +675,7 @@ if (I != I->getParent()->begin()) { BasicBlock::iterator BBI = I; --BBI; if (DbgStopPointInst *DSPI = dyn_cast<DbgStopPointInst>(BBI)) { - CallInst *newDSPI = DSPI->clone(); + CallInst *newDSPI = cast<CallInst>(DSPI->clone()); newDSPI->insertBefore(InsertPos); } }