Fix comments from copy-paste to a more relevant meaning
authorEli Bendersky <eli.bendersky@intel.com>
Sun, 29 Apr 2012 10:26:26 +0000 (10:26 +0000)
committerEli Bendersky <eli.bendersky@intel.com>
Sun, 29 Apr 2012 10:26:26 +0000 (10:26 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@155790 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/ExecutionEngine/Interpreter.h
include/llvm/ExecutionEngine/JIT.h
include/llvm/ExecutionEngine/MCJIT.h

index 7425cdbcfda821dfda614e83ce5d35d1515d647a..72d97ef8e12beaaa5028cc6723eb1dce11883b14 100644 (file)
@@ -23,7 +23,7 @@ extern "C" void LLVMLinkInInterpreter();
 namespace {
   struct ForceInterpreterLinking {
     ForceInterpreterLinking() {
-      // We must reference the passes in such a way that compilers will not
+      // We must reference the interpreter in such a way that compilers will not
       // delete it all as dead code, even with whole program optimization,
       // yet is effectively a NO-OP. As the compiler isn't smart enough
       // to know that getenv() never returns -1, this will do the job.
index 6013db48ce6980d816e04f51b307a9d4c803590a..b4cda1d513f1b12e5e48c69beb7e0a76e4c10c0c 100644 (file)
@@ -23,7 +23,7 @@ extern "C" void LLVMLinkInJIT();
 namespace {
   struct ForceJITLinking {
     ForceJITLinking() {
-      // We must reference the passes in such a way that compilers will not
+      // We must reference JIT in such a way that compilers will not
       // delete it all as dead code, even with whole program optimization,
       // yet is effectively a NO-OP. As the compiler isn't smart enough
       // to know that getenv() never returns -1, this will do the job.
index f956a5029b179ed6141132a56f71b3bcd7b992aa..ac16bdc7df178cdb68f3f8763e2fe34fa97562f5 100644 (file)
@@ -23,7 +23,7 @@ extern "C" void LLVMLinkInMCJIT();
 namespace {
   struct ForceMCJITLinking {
     ForceMCJITLinking() {
-      // We must reference the passes in such a way that compilers will not
+      // We must reference MCJIT in such a way that compilers will not
       // delete it all as dead code, even with whole program optimization,
       // yet is effectively a NO-OP. As the compiler isn't smart enough
       // to know that getenv() never returns -1, this will do the job.