diff --git a/examples/LLJITExamples/LLJITDumpObjects/LLJITDumpObjects.cpp b/examples/LLJITExamples/LLJITDumpObjects/LLJITDumpObjects.cpp index 875292a2e09..9b020ef8c49 100644 --- a/examples/LLJITExamples/LLJITDumpObjects/LLJITDumpObjects.cpp +++ b/examples/LLJITExamples/LLJITDumpObjects/LLJITDumpObjects.cpp @@ -39,7 +39,7 @@ int main(int argc, char *argv[]) { InitializeNativeTarget(); InitializeNativeTargetAsmPrinter(); - cl::ParseCommandLineOptions(argc, argv, "HowToUseLLJIT"); + cl::ParseCommandLineOptions(argc, argv, "LLJITDumpObjects"); ExitOnErr.setBanner(std::string(argv[0]) + ": "); outs() diff --git a/examples/LLJITExamples/LLJITWithCustomObjectLinkingLayer/LLJITWithCustomObjectLinkingLayer.cpp b/examples/LLJITExamples/LLJITWithCustomObjectLinkingLayer/LLJITWithCustomObjectLinkingLayer.cpp index 04607d743ad..a2bdbcbb08a 100644 --- a/examples/LLJITExamples/LLJITWithCustomObjectLinkingLayer/LLJITWithCustomObjectLinkingLayer.cpp +++ b/examples/LLJITExamples/LLJITWithCustomObjectLinkingLayer/LLJITWithCustomObjectLinkingLayer.cpp @@ -33,7 +33,7 @@ int main(int argc, char *argv[]) { InitializeNativeTarget(); InitializeNativeTargetAsmPrinter(); - cl::ParseCommandLineOptions(argc, argv, "HowToUseLLJIT"); + cl::ParseCommandLineOptions(argc, argv, "LLJITWithCustomObjectLinkingLayer"); ExitOnErr.setBanner(std::string(argv[0]) + ": "); // Detect the host and set code model to small. diff --git a/examples/LLJITExamples/LLJITWithObjectCache/LLJITWithObjectCache.cpp b/examples/LLJITExamples/LLJITWithObjectCache/LLJITWithObjectCache.cpp index c7e4051b4fe..f94fd853ed0 100644 --- a/examples/LLJITExamples/LLJITWithObjectCache/LLJITWithObjectCache.cpp +++ b/examples/LLJITExamples/LLJITWithObjectCache/LLJITWithObjectCache.cpp @@ -83,7 +83,7 @@ int main(int argc, char *argv[]) { InitializeNativeTarget(); InitializeNativeTargetAsmPrinter(); - cl::ParseCommandLineOptions(argc, argv, "HowToUseLLJIT"); + cl::ParseCommandLineOptions(argc, argv, "LLJITWithObjectCache"); ExitOnErr.setBanner(std::string(argv[0]) + ": "); MyObjectCache MyCache;