I'm not seeing `.ll` files generated when dumping ...
# compiler
j
I'm not seeing
.ll
files generated when dumping LLVM IR with the upgrade to 1.9 as documented by https://github.com/JetBrains/kotlin/blob/1.9.0/kotlin-native/HACKING.md#dumping-llvm-ir. I was dumping the
VerifyBitcode
phase but I also tried
Codegen
. I get the
.bc
and
.o
and no
.ll
anymore. Did something change? I didn't notice anything with a quick poke through the code.
p
We'll check. But as workaround you can convert bc to ll with llvm-dis tool from llvm.
j
Closing the loop, the flag to specify the directory changed. Also using
VerifyBitcode
is not recommended to be used. https://github.com/JetBrains/kotlin/commit/c074cf66352fc77e93881f3ace6c84bfc2586278
Oh wait, I linked to the 1.9 docs in the original message. Hmm let me ensure it's actually working still.
It is. Wonder what I was doing wrong then. Oh well.