[llvm] r330538 - [lli] Fix syntax error: missing ';'

Jonas Devlieghere via llvm-commits llvm-commits at lists.llvm.org
Sun Apr 22 01:35:00 PDT 2018


Author: jdevlieghere
Date: Sun Apr 22 01:35:00 2018
New Revision: 330538

URL: http://llvm.org/viewvc/llvm-project?rev=330538&view=rev
Log:
[lli] Fix syntax error: missing ';'

Fixes build issue on the windows bots:
  error C2143: syntax error: missing ';'

Modified:
    llvm/trunk/tools/lli/lli.cpp

Modified: llvm/trunk/tools/lli/lli.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/lli/lli.cpp?rev=330538&r1=330537&r2=330538&view=diff
==============================================================================
--- llvm/trunk/tools/lli/lli.cpp (original)
+++ llvm/trunk/tools/lli/lli.cpp Sun Apr 22 01:35:00 2018
@@ -538,8 +538,8 @@ int main(int argc, char **argv, char * c
   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()) {




More information about the llvm-commits mailing list