We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10183cf commit 7dace36Copy full SHA for 7dace36
src/coreclr/tools/aot/ILCompiler.LLVM/CodeGen/LLVMObjectWriter.cs
@@ -282,7 +282,7 @@ private void FinishObjWriter()
282
_module.PrintToFile(Path.ChangeExtension(_objectFilePath, ".txt"));
283
_module.Verify(LLVMVerifierFailureAction.LLVMAbortProcessAction);
284
285
- _module.PrintToFile(Path.ChangeExtension(_objectFilePath, "external.txt"));
+ _moduleWithExternalFunctions.PrintToFile(Path.ChangeExtension(_objectFilePath, "external.txt"));
286
_moduleWithExternalFunctions.Verify(LLVMVerifierFailureAction.LLVMAbortProcessAction);
287
#endif
288
0 commit comments