mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-26 14:16:12 +00:00
Fix comments from copy-paste to a more relevant meaning
llvm-svn: 155790
This commit is contained in:
parent
5164acc298
commit
9769cec353
@ -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…
x
Reference in New Issue
Block a user