diff options
| author | Jonas Devlieghere <jonas@devlieghere.com> | 2018-04-22 08:35:00 +0000 |
|---|---|---|
| committer | Jonas Devlieghere <jonas@devlieghere.com> | 2018-04-22 08:35:00 +0000 |
| commit | 7b5fa24bcd4b13ab7e428df51eb9692f502ccd2f (patch) | |
| tree | db423122314f7e36cdd0d8b60f5ce869cea51317 /llvm/tools/lli/lli.cpp | |
| parent | 4a2863ccbc8d4f87b52aeec609e012548f463770 (diff) | |
| download | bcm5719-llvm-7b5fa24bcd4b13ab7e428df51eb9692f502ccd2f.tar.gz bcm5719-llvm-7b5fa24bcd4b13ab7e428df51eb9692f502ccd2f.zip | |
[lli] Fix syntax error: missing ';'
Fixes build issue on the windows bots:
error C2143: syntax error: missing ';'
llvm-svn: 330538
Diffstat (limited to 'llvm/tools/lli/lli.cpp')
| -rw-r--r-- | llvm/tools/lli/lli.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/tools/lli/lli.cpp b/llvm/tools/lli/lli.cpp index d9a008f116a..48aa1d83a48 100644 --- a/llvm/tools/lli/lli.cpp +++ b/llvm/tools/lli/lli.cpp @@ -538,8 +538,8 @@ int main(int argc, char **argv, char * const *envp) { if (RemoteMCJIT) { #ifndef LLVM_ON_UNIX WithColor::warning(errs(), argv[0]) - << "host does not support external remote targets.\n" WithColor::note() - << "defaulting to local execution\n"; + << "host does not support external remote targets.\n"; + WithColor::note() << "defaulting to local execution\n"; return -1; #else if (ChildExecPath.empty()) { |

