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 2aff842 commit dff3dbcCopy full SHA for dff3dbc
jacodb-panda-dynamic/src/main/kotlin/org/jacodb/panda/dynamic/parser/ProgramToDot.kt
@@ -78,6 +78,9 @@ fun IRParser.Program.toDot(): String {
78
bb.insts.forEachIndexed { i, inst ->
79
val labelLines: MutableList<String> = mutableListOf()
80
labelLines += "${inst.id}: ${inst.opcode}: ${inst.type}"
81
+ if (inst.value != null) {
82
+ labelLines += "value = ${inst.value}"
83
+ }
84
if (inst.inputs.isNotEmpty()) {
85
labelLines += "inputs = ${inst.inputs}"
86
}
0 commit comments