File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -2158,7 +2158,7 @@ void JuliaOJIT::addModule(orc::ThreadSafeModule TSM)
21582158 // even though that shouldn't be the case and might be unwise
21592159 Expected<std::unique_ptr<MemoryBuffer>> Obj = CompileLayer.getCompiler ()(M);
21602160 if (!Obj) {
2161- #ifndef __clang_analyzer__ // reportError calls an arbitrary function, which the analyzer thinks might be a safepoint
2161+ #ifndef __clang_analyzer__ // reportError calls an arbitrary function, which the static analyzer thinks might be a safepoint
21622162 ES.reportError (Obj.takeError ());
21632163#endif
21642164 errs () << " Failed to add module to JIT!\n " ;
@@ -2168,7 +2168,7 @@ void JuliaOJIT::addModule(orc::ThreadSafeModule TSM)
21682168 { auto release = std::move (Lock); }
21692169 auto Err = JuliaOJIT::addObjectFile (JD, std::move (*Obj));
21702170 if (Err) {
2171- #ifndef __clang_analyzer__ // reportError calls an arbitrary function, which the analyzer thinks might be a safepoint
2171+ #ifndef __clang_analyzer__ // reportError calls an arbitrary function, which the static analyzer thinks might be a safepoint
21722172 ES.reportError (std::move (Err));
21732173#endif
21742174 errs () << " Failed to add objectfile to JIT!\n " ;
You can’t perform that action at this time.
0 commit comments