blob: 37667160fb4567edfdc1e145f1b819d3774e6312 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// See LICENSE for license details.
package firrtl.options.phases
import firrtl.AnnotationSeq
import firrtl.annotations.LegacyAnnotation
import firrtl.options.Phase
/** Convert any [[LegacyAnnotation]]s to non-legacy variants */
object ConvertLegacyAnnotations extends Phase {
def transform(annotations: AnnotationSeq): AnnotationSeq = LegacyAnnotation.convertLegacyAnnos(annotations)
}
|