From 5ffd81c02b69e5504a51a82d1ed148ffcde6872e Mon Sep 17 00:00:00 2001 From: Adrian Herrera Date: Wed, 14 Dec 2016 17:30:05 +0100 Subject: Typo fix when compiling with LLVM 3.5 and above Replaced an incorrect comma with a semicolon in the Executor constructor. --- lib/Core/Executor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Core/Executor.cpp b/lib/Core/Executor.cpp index 1f3c1939..c369b864 100644 --- a/lib/Core/Executor.cpp +++ b/lib/Core/Executor.cpp @@ -376,7 +376,7 @@ Executor::Executor(const InterpreterOptions &opts, InterpreterHandler *ih) #if LLVM_VERSION_CODE >= LLVM_VERSION(3, 5) debugInstFile = new llvm::raw_fd_ostream(debug_file_name.c_str(), ErrorInfo, - llvm::sys::fs::OpenFlags::F_Text), + llvm::sys::fs::OpenFlags::F_Text); #else debugInstFile = new llvm::raw_fd_ostream(debug_file_name.c_str(), ErrorInfo); -- cgit 1.4.1