diff options
author | Alexandre Ganea <alexandre.ganea@ubisoft.com> | 2018-12-18 18:23:36 +0000 |
---|---|---|
committer | Alexandre Ganea <alexandre.ganea@ubisoft.com> | 2018-12-18 18:23:36 +0000 |
commit | b536bf52997cb764b24f9121212aa527b78571a6 (patch) | |
tree | f51678274d191c613d9cda39d4cbaa9db1edf16d /llvm/lib/Support/Signals.cpp | |
parent | b5053199694972d627c886ca00d842d153cbdbcd (diff) | |
download | bcm5719-llvm-b536bf52997cb764b24f9121212aa527b78571a6.tar.gz bcm5719-llvm-b536bf52997cb764b24f9121212aa527b78571a6.zip |
Buildfix for r345516 (Clang compilation failing).
llvm-svn: 349518
Diffstat (limited to 'llvm/lib/Support/Signals.cpp')
-rw-r--r-- | llvm/lib/Support/Signals.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Support/Signals.cpp b/llvm/lib/Support/Signals.cpp index 45f9c69282a..333f492d458 100644 --- a/llvm/lib/Support/Signals.cpp +++ b/llvm/lib/Support/Signals.cpp @@ -157,7 +157,7 @@ static bool printSymbolizedStackTrace(StringRef Argv0, void **StackTrace, } Optional<StringRef> Redirects[] = {StringRef(InputFile), - StringRef(OutputFile), ""}; + StringRef(OutputFile), StringRef("")}; StringRef Args[] = {"llvm-symbolizer", "--functions=linkage", "--inlining", #ifdef _WIN32 // Pass --relative-address on Windows so that we don't |