diff options
author | Adrian Herrera <adrian.herrera02@gmail.com> | 2016-12-14 17:30:05 +0100 |
---|---|---|
committer | Adrian Herrera <adrian.herrera02@gmail.com> | 2016-12-15 13:54:49 +0100 |
commit | 5ffd81c02b69e5504a51a82d1ed148ffcde6872e (patch) | |
tree | 6aa5c1bf679ce39c2bae2cd5afd2a8ad49299c42 /lib | |
parent | 9670eb8797304c342a9c778a44506260162fdff9 (diff) | |
download | klee-5ffd81c02b69e5504a51a82d1ed148ffcde6872e.tar.gz |
Typo fix when compiling with LLVM 3.5 and above
Replaced an incorrect comma with a semicolon in the Executor constructor.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Core/Executor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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); |