We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ecb134 commit 4701036Copy full SHA for 4701036
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