We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c46df85 commit de58693Copy full SHA for de58693
llvm/lib/ExecutionEngine/Orc/MachOPlatform.cpp
@@ -583,6 +583,12 @@ MachOPlatform::MachOPlatform(
583
return;
584
585
// (5) Associate runtime support functions.
586
+ // TODO: Consider moving this above (4) to make runtime support functions
587
+ // available to the bootstrap completion graph. We'd just need to be
588
+ // sure that the runtime support functions are fully usable before any
589
+ // bootstrap completion actions use them (e.g. the ORC runtime
590
+ // macho_platform object would have to have been created and
591
+ // initialized).
592
if ((Err = associateRuntimeSupportFunctions()))
593
594
}
0 commit comments