diff --git a/lib/Interpreter/IncrementalExecutor.cpp b/lib/Interpreter/IncrementalExecutor.cpp index 0fd9da09..6edd43ae 100644 --- a/lib/Interpreter/IncrementalExecutor.cpp +++ b/lib/Interpreter/IncrementalExecutor.cpp @@ -72,11 +72,9 @@ CreateHostTargetMachine(const clang::CompilerInstance& CI) { std::string MCPU; std::string FeaturesStr; - auto TM = std::unique_ptr(TheTarget->createTargetMachine(Triple, - MCPU, FeaturesStr, - llvm::TargetOptions(), - Optional(), CMModel, - OptLevel)); + auto TM = std::unique_ptr(TheTarget->createTargetMachine( + Triple, MCPU, FeaturesStr, llvm::TargetOptions(), + Optional(), CMModel, OptLevel)); TM->Options.EmulatedTLS = true; return TM; }