From bbd8e5d79ac4cdc5d205230eac88f69fd309df53 Mon Sep 17 00:00:00 2001 From: Eli Bendersky Date: Sun, 29 Apr 2012 10:26:26 +0000 Subject: [PATCH] Fix comments from copy-paste to a more relevant meaning git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@155790 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/ExecutionEngine/Interpreter.h | 2 +- include/llvm/ExecutionEngine/JIT.h | 2 +- include/llvm/ExecutionEngine/MCJIT.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/llvm/ExecutionEngine/Interpreter.h b/include/llvm/ExecutionEngine/Interpreter.h index 7425cdbcfda..72d97ef8e12 100644 --- a/include/llvm/ExecutionEngine/Interpreter.h +++ b/include/llvm/ExecutionEngine/Interpreter.h @@ -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. diff --git a/include/llvm/ExecutionEngine/JIT.h b/include/llvm/ExecutionEngine/JIT.h index 6013db48ce6..b4cda1d513f 100644 --- a/include/llvm/ExecutionEngine/JIT.h +++ b/include/llvm/ExecutionEngine/JIT.h @@ -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. diff --git a/include/llvm/ExecutionEngine/MCJIT.h b/include/llvm/ExecutionEngine/MCJIT.h index f956a5029b1..ac16bdc7df1 100644 --- a/include/llvm/ExecutionEngine/MCJIT.h +++ b/include/llvm/ExecutionEngine/MCJIT.h @@ -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. -- 2.34.1