[NFC] Fix missing eof newline.

This commit is contained in:
Will Dietz 2024-08-15 15:09:33 -05:00
parent 669d7e7886
commit 8cd116d370
8 changed files with 8 additions and 8 deletions

View File

@ -17,4 +17,4 @@ enum class ReadEnableMode { Zero, Ignore, Undefined };
} // namespace seq
} // namespace circt
#endif // CIRCT_DIALECT_SEQ_SEQENUMS_H
#endif // CIRCT_DIALECT_SEQ_SEQENUMS_H

View File

@ -10,4 +10,4 @@ module attributes {circt.loweringOptions = "disallowExpressionInliningInPorts"}
// CHECK: .a (a),
%bar.b = hw.instance "bar" @Bar(a: %a: !hw.inout<i1>) -> (b: i1)
}
}
}

View File

@ -54,4 +54,4 @@ func.func @testUnusedArg(%t: !dc.token, %v : !dc.value<i1>) -> () {
// CHECK: }
func.func @testForkOfValue(%v : !dc.value<i1>) -> (!dc.value<i1>, !dc.value<i1>) {
return %v, %v : !dc.value<i1>, !dc.value<i1>
}
}

View File

@ -1984,4 +1984,4 @@ firrtl.circuit "Top" attributes {
// CHECK-SAME: (in %reset: !firrtl.asyncreset) attributes {annotations = [{class = "circt.ExcludeFromFullResetAnnotation"}]}
// expected-warning @+1 {{'sifive.enterprise.firrtl.IgnoreFullAsyncResetAnnotation' is deprecated, use 'circt.ExcludeFromFullResetAnnotation' instead}}
firrtl.module @Top(in %reset: !firrtl.asyncreset) {}
}
}

View File

@ -26,4 +26,4 @@ firrtl.circuit "TopLevel" {
// CHECK-NEXT: %b = firrtl.node %[[inv]] : !firrtl.uint<3>
// CHECK-NEXT: %a = firrtl.node %b : !firrtl.uint<3>
}
}
}

View File

@ -280,4 +280,4 @@ firrtl.circuit "UninferredRefReset" {
firrtl.circuit "Top" {
// expected-error @+1 {{'FullResetAnnotation' requires resetType == 'sync' | 'async', but got resetType == "potato"}}
firrtl.module @Top(in %reset: !firrtl.asyncreset) attributes {portAnnotations = [[{class = "circt.FullResetAnnotation", resetType = "potato"}]]} {}
}
}

View File

@ -42,4 +42,4 @@ firrtl.circuit "TopLevel" {
// CHECK: firrtl.ref.define %b, %0 : !firrtl.probe<bundle<b: vector<uint<1>, 2>>>
}
}
}

View File

@ -59,4 +59,4 @@ handshake.func @m3(%in0 : i32, %in1 : i32, %in2 : i32) -> (i32) {
handshake.func @m5(%in0 : i32, %in1 : i32, %in2 : i32, %in3 : i32, %in4 : i32) -> (i32) {
%out = handshake.merge %in0, %in1, %in2, %in3, %in4 : i32
return %out : i32
}
}