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 8636508 commit 23aceb1Copy full SHA for 23aceb1
compiler/src/dotty/tools/dotc/Compiler.scala
@@ -108,14 +108,9 @@ class Compiler {
108
new CollectSuperCalls, // Find classes that are called with super
109
new DropInlined, // Drop Inlined nodes, since backend has no use for them
110
new LabelDefs), // Converts calls to labels to jumps
111
- List(checkedIdOverflow(new GenBCode)) // Generate JVM bytecode
+ List(new GenBCode) // Generate JVM bytecode
112
)
113
114
- private def checkedIdOverflow(phase: Phase): Phase = {
115
- assert(phase.id <= Periods.MaxPossiblePhaseId)
116
- phase
117
- }
118
-
119
var runId = 1
120
def nextRunId = {
121
runId += 1; runId
0 commit comments