File tree Expand file tree Collapse file tree 2 files changed +3
-7
lines changed
test/api-digester/Outputs Expand file tree Collapse file tree 2 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -39,13 +39,9 @@ struct _OpaqueStringSwitchCache {
39
39
var b : Builtin . Word
40
40
}
41
41
42
- @usableFromInline // FIXME(sil-serialize-all)
43
42
internal typealias _StringSwitchCache = Dictionary < String , Int >
44
43
45
- @_fixed_layout // FIXME(sil-serialize-all)
46
- @usableFromInline // FIXME(sil-serialize-all)
47
44
internal struct _StringSwitchContext {
48
- @inlinable // FIXME(sil-serialize-all)
49
45
internal init (
50
46
cases: [ StaticString ] ,
51
47
cachePtr: UnsafeMutablePointer < _StringSwitchCache >
@@ -54,9 +50,7 @@ internal struct _StringSwitchContext {
54
50
self . cachePtr = cachePtr
55
51
}
56
52
57
- @usableFromInline // FIXME(sil-serialize-all)
58
53
internal let cases : [ StaticString ]
59
- @usableFromInline // FIXME(sil-serialize-all)
60
54
internal let cachePtr : UnsafeMutablePointer < _StringSwitchCache >
61
55
}
62
56
@@ -94,7 +88,6 @@ func _findStringSwitchCaseWithCache(
94
88
}
95
89
96
90
/// Builds the string switch case.
97
- @inlinable // FIXME(sil-serialize-all)
98
91
internal func _createStringTableCache( _ cacheRawPtr: Builtin . RawPointer ) {
99
92
let context = UnsafePointer < _StringSwitchContext > ( cacheRawPtr) . pointee
100
93
var cache = _StringSwitchCache ( )
Original file line number Diff line number Diff line change @@ -86,3 +86,6 @@ Func _makeAnyHashableUpcastingToHashableBaseType(_:storingResultInto:) has been
86
86
87
87
Func RandomNumberGenerator._fill(bytes:) has been removed
88
88
Func SystemRandomNumberGenerator._fill(bytes:) has been removed
89
+
90
+ Func _createStringTableCache(_:) has been removed
91
+ Struct _StringSwitchContext has been removed
You can’t perform that action at this time.
0 commit comments