[llvm-commits] [llvm] r155790 - in /llvm/trunk/include/llvm/ExecutionEngine: Interpreter.h JIT.h MCJIT.h
Eli Bendersky
eli.bendersky at intel.com
Sun Apr 29 03:26:26 PDT 2012
Author: eliben
Date: Sun Apr 29 05:26:26 2012
New Revision: 155790
URL: http://llvm.org/viewvc/llvm-project?rev=155790&view=rev
Log:
Fix comments from copy-paste to a more relevant meaning
Modified:
llvm/trunk/include/llvm/ExecutionEngine/Interpreter.h
llvm/trunk/include/llvm/ExecutionEngine/JIT.h
llvm/trunk/include/llvm/ExecutionEngine/MCJIT.h
Modified: llvm/trunk/include/llvm/ExecutionEngine/Interpreter.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ExecutionEngine/Interpreter.h?rev=155790&r1=155789&r2=155790&view=diff
==============================================================================
--- llvm/trunk/include/llvm/ExecutionEngine/Interpreter.h (original)
+++ llvm/trunk/include/llvm/ExecutionEngine/Interpreter.h Sun Apr 29 05:26:26 2012
@@ -23,7 +23,7 @@
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.
Modified: llvm/trunk/include/llvm/ExecutionEngine/JIT.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ExecutionEngine/JIT.h?rev=155790&r1=155789&r2=155790&view=diff
==============================================================================
--- llvm/trunk/include/llvm/ExecutionEngine/JIT.h (original)
+++ llvm/trunk/include/llvm/ExecutionEngine/JIT.h Sun Apr 29 05:26:26 2012
@@ -23,7 +23,7 @@
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.
Modified: llvm/trunk/include/llvm/ExecutionEngine/MCJIT.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ExecutionEngine/MCJIT.h?rev=155790&r1=155789&r2=155790&view=diff
==============================================================================
--- llvm/trunk/include/llvm/ExecutionEngine/MCJIT.h (original)
+++ llvm/trunk/include/llvm/ExecutionEngine/MCJIT.h Sun Apr 29 05:26:26 2012
@@ -23,7 +23,7 @@
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.
More information about the llvm-commits
mailing list