blob: 5455690e2736f744fa974a0f985920bd5e2e2ca3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// SPDX-License-Identifier: Apache-2.0
package firrtl
package object transforms {
type InlineAcrossCastsTransform = InlineCastsTransform
val InlineAcrossCastsTransform = InlineCastsTransform
@deprecated("Replaced by LegalizeClocksAndAsyncResetsTransform", "FIRRTL 1.4.0")
type LegalizeClocksTransform = LegalizeClocksAndAsyncResetsTransform
@deprecated("Replaced by LegalizeClocksAndAsyncResetsTransform", "FIRRTL 1.4.0")
val LegalizeClocksTransform = LegalizeClocksAndAsyncResetsTransform
}
|