diff --git a/examples/LLJITExamples/LLJITWithJITLink/LLJITWithJITLink.cpp b/examples/LLJITExamples/LLJITWithJITLink/LLJITWithJITLink.cpp index ed79b90e328..fdda31eca48 100644 --- a/examples/LLJITExamples/LLJITWithJITLink/LLJITWithJITLink.cpp +++ b/examples/LLJITExamples/LLJITWithJITLink/LLJITWithJITLink.cpp @@ -38,14 +38,14 @@ int main(int argc, char *argv[]) { cl::ParseCommandLineOptions(argc, argv, "HowToUseLLJIT"); ExitOnErr.setBanner(std::string(argv[0]) + ": "); - // Declare an in-process JITLink memory manager. + // Define an in-process JITLink memory manager. jitlink::InProcessMemoryManager MemMgr; // Detect the host and set code model to small. auto JTMB = ExitOnErr(JITTargetMachineBuilder::detectHost()); JTMB.setCodeModel(CodeModel::Small); - // Create an LLJIT instance with a custom CompileFunction. + // Create an LLJIT instance with an ObjectLinkingLayer as the base layer. auto J = ExitOnErr(LLJITBuilder() .setJITTargetMachineBuilder(std::move(JTMB))