@@ -4122,8 +4122,6 @@ public struct Fuzzilli_Protobuf_WasmReturn: Sendable {
41224122 // `Message` and `Message+*Additions` files in the SwiftProtobuf library for
41234123 // methods supported on all messages.
41244124
4125- public var returnTypes: [Fuzzilli_Protobuf_WasmILType] = []
4126-
41274125 public var unknownFields = SwiftProtobuf.UnknownStorage()
41284126
41294127 public init() {}
@@ -11529,29 +11527,18 @@ extension Fuzzilli_Protobuf_Constf64: SwiftProtobuf.Message, SwiftProtobuf._Mess
1152911527
1153011528extension Fuzzilli_Protobuf_WasmReturn: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
1153111529 public static let protoMessageName: String = _protobuf_package + ".WasmReturn"
11532- public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{1}returnTypes\0" )
11530+ public static let _protobuf_nameMap = SwiftProtobuf._NameMap()
1153311531
1153411532 public mutating func decodeMessage<D: SwiftProtobuf.Decoder>(decoder: inout D) throws {
11535- while let fieldNumber = try decoder.nextFieldNumber() {
11536- // The use of inline closures is to circumvent an issue where the compiler
11537- // allocates stack space for every case branch when no optimizations are
11538- // enabled. https://github.com/apple/swift-protobuf/issues/1034
11539- switch fieldNumber {
11540- case 1: try { try decoder.decodeRepeatedMessageField(value: &self.returnTypes) }()
11541- default: break
11542- }
11543- }
11533+ // Load everything into unknown fields
11534+ while try decoder.nextFieldNumber() != nil {}
1154411535 }
1154511536
1154611537 public func traverse<V: SwiftProtobuf.Visitor>(visitor: inout V) throws {
11547- if !self.returnTypes.isEmpty {
11548- try visitor.visitRepeatedMessageField(value: self.returnTypes, fieldNumber: 1)
11549- }
1155011538 try unknownFields.traverse(visitor: &visitor)
1155111539 }
1155211540
1155311541 public static func ==(lhs: Fuzzilli_Protobuf_WasmReturn, rhs: Fuzzilli_Protobuf_WasmReturn) -> Bool {
11554- if lhs.returnTypes != rhs.returnTypes {return false}
1155511542 if lhs.unknownFields != rhs.unknownFields {return false}
1155611543 return true
1155711544 }
0 commit comments