diff options
Diffstat (limited to 'llvm/tools/opt')
| -rw-r--r-- | llvm/tools/opt/opt.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/tools/opt/opt.cpp b/llvm/tools/opt/opt.cpp index 236c9022587..8e839b23907 100644 --- a/llvm/tools/opt/opt.cpp +++ b/llvm/tools/opt/opt.cpp @@ -765,10 +765,10 @@ int main(int argc, char **argv) { // If requested, run all passes again with the same pass manager to catch // bugs caused by persistent state in the passes if (RunTwice) { - std::unique_ptr<Module> M2(CloneModule(M.get())); - Passes.run(*M2); - CompileTwiceBuffer = Buffer; - Buffer.clear(); + std::unique_ptr<Module> M2(CloneModule(*M)); + Passes.run(*M2); + CompileTwiceBuffer = Buffer; + Buffer.clear(); } // Now that we have all of the passes ready, run them. |

