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 e700909 commit 5ef9630Copy full SHA for 5ef9630
src/backend/jit/llvm/llvmjit.c
@@ -658,7 +658,7 @@ llvm_compile_module(LLVMJitContext *context)
658
{
659
char *filename;
660
661
- filename = psprintf("%u.%zu.bc",
+ filename = psprintf("%d.%zu.bc",
662
MyProcPid,
663
context->module_generation);
664
LLVMWriteBitcodeToFile(context->module, filename);
@@ -677,7 +677,7 @@ llvm_compile_module(LLVMJitContext *context)
677
678
679
680
- filename = psprintf("%u.%zu.optimized.bc",
+ filename = psprintf("%d.%zu.optimized.bc",
681
682
683
0 commit comments