Establish dependency LOWER_INLINE -> LOWER_INLINE_CONSTRUCTORS

This commit is contained in:
Konstantin Anisimov
2017-05-18 16:48:08 +07:00
committed by KonstantinAnisimov
parent 8f1073cab8
commit 3ee1e114c9
2 changed files with 2 additions and 8 deletions
@@ -28,7 +28,7 @@ enum class KonanPhase(val description: String,
/* */ BACKEND("All backend"), /* */ BACKEND("All backend"),
/* ... */ LOWER("IR Lowering"), /* ... */ LOWER("IR Lowering"),
/* ... ... */ LOWER_INLINE_CONSTRUCTORS("Inline constructors transformation"), /* ... ... */ LOWER_INLINE_CONSTRUCTORS("Inline constructors transformation"),
/* ... ... */ LOWER_INLINE("Functions inlining"), /* ... ... */ LOWER_INLINE("Functions inlining", LOWER_INLINE_CONSTRUCTORS),
/* ... ... ... */ DESERIALIZER("Deserialize inline bodies"), /* ... ... ... */ DESERIALIZER("Deserialize inline bodies"),
/* ... ... */ LOWER_ENUMS("Enum classes lowering"), /* ... ... */ LOWER_ENUMS("Enum classes lowering"),
/* ... ... */ LOWER_DELEGATION("Delegation lowering"), /* ... ... */ LOWER_DELEGATION("Delegation lowering"),
@@ -170,9 +170,3 @@ internal class InlineConstructorsTransformation(val context: Context): IrElement
override fun visitElement(element: IrElement) = element.accept(this, null) override fun visitElement(element: IrElement) = element.accept(this, null)
} }
} }