diff options
Diffstat (limited to 'llvm/utils/not/not.cpp')
-rw-r--r-- | llvm/utils/not/not.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/utils/not/not.cpp b/llvm/utils/not/not.cpp index 271fbcfe94a..de71b4c6887 100644 --- a/llvm/utils/not/not.cpp +++ b/llvm/utils/not/not.cpp @@ -39,8 +39,7 @@ int main(int argc, const char **argv) { } std::string ErrMsg; - int Result = sys::ExecuteAndWait(*Program, argv, nullptr, nullptr, 0, 0, - &ErrMsg); + int Result = sys::ExecuteAndWait(*Program, argv, nullptr, {}, 0, 0, &ErrMsg); #ifdef _WIN32 // Handle abort() in msvcrt -- It has exit code as 3. abort(), aka // unreachable, should be recognized as a crash. However, some binaries use |