diff options
author | Devang Patel <dpatel@apple.com> | 2009-10-27 22:16:29 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2009-10-27 22:16:29 +0000 |
commit | 50b6e33584f4e4cf75c7795b1f1a90731861c825 (patch) | |
tree | 1ae76dc6ddfc8b31bfd97e7f273756780cb7cdb4 /lib/Transforms/Scalar/IndVarSimplify.cpp | |
parent | eef55dc3fdebf915128e5d3848f372c7db6c38e8 (diff) | |
download | external_llvm-50b6e33584f4e4cf75c7795b1f1a90731861c825.tar.gz external_llvm-50b6e33584f4e4cf75c7795b1f1a90731861c825.tar.bz2 external_llvm-50b6e33584f4e4cf75c7795b1f1a90731861c825.zip |
Factor out redundancy from clone() implementations.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85327 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Scalar/IndVarSimplify.cpp')
-rw-r--r-- | lib/Transforms/Scalar/IndVarSimplify.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/IndVarSimplify.cpp b/lib/Transforms/Scalar/IndVarSimplify.cpp index e2d9e0b9ec..931759a86a 100644 --- a/lib/Transforms/Scalar/IndVarSimplify.cpp +++ b/lib/Transforms/Scalar/IndVarSimplify.cpp @@ -292,7 +292,7 @@ void IndVarSimplify::RewriteLoopExitValues(Loop *L, if (NumPreds != 1) { // Clone the PHI and delete the original one. This lets IVUsers and // any other maps purge the original user from their records. - PHINode *NewPN = PN->clone(); + PHINode *NewPN = cast<PHINode>(PN->clone()); NewPN->takeName(PN); NewPN->insertBefore(PN); PN->replaceAllUsesWith(NewPN); |