reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

examples/Kaleidoscope/Chapter7/toy.cpp
 1095     TheFPM->run(*TheFunction);
 1118   TheFPM = std::make_unique<legacy::FunctionPassManager>(TheModule.get());
 1121   TheFPM->add(createPromoteMemoryToRegisterPass());
 1123   TheFPM->add(createInstructionCombiningPass());
 1125   TheFPM->add(createReassociatePass());
 1127   TheFPM->add(createGVNPass());
 1129   TheFPM->add(createCFGSimplificationPass());
 1131   TheFPM->doInitialization();