Skip to content

Commit 3b19ee1

Browse files
Zentrikvchuravy
authored andcommitted
Make comment clearer
1 parent dea55ee commit 3b19ee1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/jitlayers.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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";

0 commit comments

Comments
 (0)