Skip to content

Commit 0a27e4e

Browse files
committed
[offload] Fix copy-paste defect in error message
1 parent ead9ad2 commit 0a27e4e

File tree

1 file changed

+1
-1
lines changed
  • offload/plugins-nextgen/common/src

1 file changed

+1
-1
lines changed

offload/plugins-nextgen/common/src/JIT.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ JITEngine::backend(Module &M, const std::string &ComputeUnitKind,
222222
if (EC)
223223
return createStringError(
224224
EC, "Could not open %s to write the post-opt IR module\n",
225-
PreOptIRModuleFileName.get().c_str());
225+
PostOptIRModuleFileName.get().c_str());
226226
M.print(FD, nullptr);
227227
}
228228

0 commit comments

Comments
 (0)