[llvm] r258002 - Remove some stale comments and fix a typo as suggested by David Blaikie in his

Lang Hames via llvm-commits llvm-commits at lists.llvm.org
Sat Jan 16 17:49:46 PST 2016


Author: lhames
Date: Sat Jan 16 19:49:46 2016
New Revision: 258002

URL: http://llvm.org/viewvc/llvm-project?rev=258002&view=rev
Log:
Remove some stale comments and fix a typo as suggested by David Blaikie in his
review of r257343.

Thanks Dave!

Modified:
    llvm/trunk/test/ExecutionEngine/MCJIT/remote/stubs-remote.ll
    llvm/trunk/test/ExecutionEngine/OrcMCJIT/remote/stubs-remote.ll
    llvm/trunk/tools/lli/lli.cpp

Modified: llvm/trunk/test/ExecutionEngine/MCJIT/remote/stubs-remote.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/ExecutionEngine/MCJIT/remote/stubs-remote.ll?rev=258002&r1=258001&r2=258002&view=diff
==============================================================================
--- llvm/trunk/test/ExecutionEngine/MCJIT/remote/stubs-remote.ll (original)
+++ llvm/trunk/test/ExecutionEngine/MCJIT/remote/stubs-remote.ll Sat Jan 16 19:49:46 2016
@@ -1,6 +1,5 @@
 ; RUN: %lli -remote-mcjit -disable-lazy-compilation=false -mcjit-remote-process=lli-child-target%exeext %s
 ; XFAIL: mingw32,win32
-; This test should fail until remote symbol resolution is supported.
 
 define i32 @main() nounwind {
 entry:

Modified: llvm/trunk/test/ExecutionEngine/OrcMCJIT/remote/stubs-remote.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/ExecutionEngine/OrcMCJIT/remote/stubs-remote.ll?rev=258002&r1=258001&r2=258002&view=diff
==============================================================================
--- llvm/trunk/test/ExecutionEngine/OrcMCJIT/remote/stubs-remote.ll (original)
+++ llvm/trunk/test/ExecutionEngine/OrcMCJIT/remote/stubs-remote.ll Sat Jan 16 19:49:46 2016
@@ -1,6 +1,5 @@
 ; RUN: %lli -jit-kind=orc-mcjit -remote-mcjit -disable-lazy-compilation=false -mcjit-remote-process=lli-child-target%exeext %s
 ; XFAIL: mingw32,win32
-; This test should fail until remote symbol resolution is supported.
 
 define i32 @main() nounwind {
 entry:

Modified: llvm/trunk/tools/lli/lli.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/lli/lli.cpp?rev=258002&r1=258001&r2=258002&view=diff
==============================================================================
--- llvm/trunk/tools/lli/lli.cpp (original)
+++ llvm/trunk/tools/lli/lli.cpp Sat Jan 16 19:49:46 2016
@@ -587,7 +587,7 @@ int main(int argc, char **argv, char * c
   if (RemoteMCJIT) {
 #ifndef LLVM_ON_UNIX
     errs() << "Warning: host does not support external remote targets.\n"
-           << "  Defaulting to local execution execution\n";
+           << "  Defaulting to local execution\n";
     return -1;
 #else
     if (ChildExecPath.empty()) {




More information about the llvm-commits mailing list