This commit is contained in:
Irmen de Jong
2024-12-19 21:05:49 +01:00
parent b01555d75e
commit ef4efcb112
13 changed files with 25 additions and 142 deletions

View File

@@ -99,7 +99,7 @@ class PtInlineAssembly(val assembly: String, val isIR: Boolean, position: Positi
class PtLabel(name: String, position: Position) : PtNamedNode(name, position) {
companion object {
// all automatically generated labels everywhere need to have the same label name prefix:
const val GeneratedLabelPrefix = "p8_label_gen_"
const val GENERATED_LABEL_PREFIX = "p8_label_gen_"
}
}