37
37
/// - line: The line number to print along with `message` if the assertion
38
38
/// fails. The default is the line number where `assert(_:_:file:line:)`
39
39
/// is called.
40
- @inlinable // FIXME(sil-serialize-all)
41
40
@_transparent
42
41
public func assert(
43
42
_ condition: @autoclosure ( ) -> Bool ,
@@ -80,7 +79,6 @@ public func assert(
80
79
/// - line: The line number to print along with `message` if the assertion
81
80
/// fails. The default is the line number where
82
81
/// `precondition(_:_:file:line:)` is called.
83
- @inlinable // FIXME(sil-serialize-all)
84
82
@_transparent
85
83
public func precondition(
86
84
_ condition: @autoclosure ( ) -> Bool ,
@@ -163,7 +161,6 @@ public func assertionFailure(
163
161
/// where `preconditionFailure(_:file:line:)` is called.
164
162
/// - line: The line number to print along with `message`. The default is the
165
163
/// line number where `preconditionFailure(_:file:line:)` is called.
166
- @inlinable // FIXME(sil-serialize-all)
167
164
@_transparent
168
165
public func preconditionFailure(
169
166
_ message: @autoclosure ( ) -> String = String ( ) ,
@@ -187,7 +184,6 @@ public func preconditionFailure(
187
184
/// where `fatalError(_:file:line:)` is called.
188
185
/// - line: The line number to print along with `message`. The default is the
189
186
/// line number where `fatalError(_:file:line:)` is called.
190
- @inlinable // FIXME(sil-serialize-all)
191
187
@_transparent
192
188
public func fatalError(
193
189
_ message: @autoclosure ( ) -> String = String ( ) ,
@@ -203,7 +199,6 @@ public func fatalError(
203
199
/// building in fast mode they are disabled. In release mode they don't print
204
200
/// an error message but just trap. In debug mode they print an error message
205
201
/// and abort.
206
- @inlinable // FIXME(sil-serialize-all)
207
202
@_transparent
208
203
public func _precondition(
209
204
_ condition: @autoclosure ( ) -> Bool , _ message: StaticString = StaticString ( ) ,
@@ -221,7 +216,6 @@ public func _precondition(
221
216
}
222
217
}
223
218
224
- @inlinable // FIXME(sil-serialize-all)
225
219
@_transparent
226
220
public func _preconditionFailure(
227
221
_ message: StaticString = StaticString ( ) ,
@@ -234,7 +228,6 @@ public func _preconditionFailure(
234
228
/// If `error` is true, prints an error message in debug mode, traps in release
235
229
/// mode, and returns an undefined error otherwise.
236
230
/// Otherwise returns `result`.
237
- @inlinable // FIXME(sil-serialize-all)
238
231
@_transparent
239
232
public func _overflowChecked< T> (
240
233
_ args: ( T , Bool ) ,
@@ -260,7 +253,6 @@ public func _overflowChecked<T>(
260
253
/// and abort.
261
254
/// They are meant to be used when the check is not comprehensively checking for
262
255
/// all possible errors.
263
- @inlinable // FIXME(sil-serialize-all)
264
256
@_transparent
265
257
public func _debugPrecondition(
266
258
_ condition: @autoclosure ( ) -> Bool , _ message: StaticString = StaticString ( ) ,
@@ -275,7 +267,6 @@ public func _debugPrecondition(
275
267
}
276
268
}
277
269
278
- @inlinable // FIXME(sil-serialize-all)
279
270
@_transparent
280
271
public func _debugPreconditionFailure(
281
272
_ message: StaticString = StaticString ( ) ,
@@ -293,7 +284,6 @@ public func _debugPreconditionFailure(
293
284
/// standard library. They are only enable when the standard library is built
294
285
/// with the build configuration INTERNAL_CHECKS_ENABLED enabled. Otherwise, the
295
286
/// call to this function is a noop.
296
- @inlinable // FIXME(sil-serialize-all)
297
287
@_transparent
298
288
public func _sanityCheck(
299
289
_ condition: @autoclosure ( ) -> Bool , _ message: StaticString = StaticString ( ) ,
@@ -307,7 +297,6 @@ public func _sanityCheck(
307
297
#endif
308
298
}
309
299
310
- @inlinable // FIXME(sil-serialize-all)
311
300
@_transparent
312
301
public func _sanityCheckFailure(
313
302
_ message: StaticString = StaticString ( ) ,
0 commit comments