OSDN Git Service

[lli] Fix syntax error: missing ';'
authorJonas Devlieghere <jonas@devlieghere.com>
Sun, 22 Apr 2018 08:35:00 +0000 (08:35 +0000)
committerJonas Devlieghere <jonas@devlieghere.com>
Sun, 22 Apr 2018 08:35:00 +0000 (08:35 +0000)
Fixes build issue on the windows bots:
  error C2143: syntax error: missing ';'

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@330538 91177308-0d34-0410-b5e6-96231b3b80d8

tools/lli/lli.cpp

index d9a008f..48aa1d8 100644 (file)
@@ -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()) {