mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-01 00:33:09 +00:00
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
This commit is contained in:
parent
db0bbdea47
commit
bbd8e5d79a
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user