@@ -234,7 +234,7 @@ impl fmt::Debug for c_void {
234
234
not( target_arch = "s390x" ) ,
235
235
not( target_arch = "x86_64" )
236
236
) ,
237
- all( target_arch = "aarch64" , any( target_os = "macos" , target_os = "ios" ) ) ,
237
+ all( target_arch = "aarch64" , any( target_os = "macos" , target_os = "ios" , target_os = "tvos" ) ) ,
238
238
target_family = "wasm" ,
239
239
target_arch = "asmjs" ,
240
240
target_os = "uefi" ,
@@ -263,7 +263,7 @@ pub struct VaListImpl<'f> {
263
263
not( target_arch = "s390x" ) ,
264
264
not( target_arch = "x86_64" )
265
265
) ,
266
- all( target_arch = "aarch64" , any( target_os = "macos" , target_os = "ios" ) ) ,
266
+ all( target_arch = "aarch64" , any( target_os = "macos" , target_os = "ios" , target_os = "tvos" ) ) ,
267
267
target_family = "wasm" ,
268
268
target_arch = "asmjs" ,
269
269
target_os = "uefi" ,
@@ -288,7 +288,7 @@ impl<'f> fmt::Debug for VaListImpl<'f> {
288
288
/// http://infocenter.arm.com/help/topic/com.arm.doc.ihi0055b/IHI0055B_aapcs64.pdf
289
289
#[ cfg( all(
290
290
target_arch = "aarch64" ,
291
- not( any( target_os = "macos" , target_os = "ios" ) ) ,
291
+ not( any( target_os = "macos" , target_os = "ios" , target_os = "tvos" ) ) ,
292
292
not( target_os = "uefi" ) ,
293
293
not( windows) ,
294
294
) ) ]
@@ -385,7 +385,10 @@ pub struct VaList<'a, 'f: 'a> {
385
385
not( target_arch = "s390x" ) ,
386
386
not( target_arch = "x86_64" )
387
387
) ,
388
- all( target_arch = "aarch64" , any( target_os = "macos" , target_os = "ios" ) ) ,
388
+ all(
389
+ target_arch = "aarch64" ,
390
+ any( target_os = "macos" , target_os = "ios" , target_os = "tvos" )
391
+ ) ,
389
392
target_family = "wasm" ,
390
393
target_arch = "asmjs" ,
391
394
target_os = "uefi" ,
@@ -400,7 +403,10 @@ pub struct VaList<'a, 'f: 'a> {
400
403
target_arch = "s390x" ,
401
404
target_arch = "x86_64"
402
405
) ,
403
- any( not( target_arch = "aarch64" ) , not( any( target_os = "macos" , target_os = "ios" ) ) ) ,
406
+ any(
407
+ not( target_arch = "aarch64" ) ,
408
+ not( any( target_os = "macos" , target_os = "ios" , target_os = "tvos" ) )
409
+ ) ,
404
410
not( target_family = "wasm" ) ,
405
411
not( target_arch = "asmjs" ) ,
406
412
not( target_os = "uefi" ) ,
@@ -418,7 +424,7 @@ pub struct VaList<'a, 'f: 'a> {
418
424
not( target_arch = "s390x" ) ,
419
425
not( target_arch = "x86_64" )
420
426
) ,
421
- all( target_arch = "aarch64" , any( target_os = "macos" , target_os = "ios" ) ) ,
427
+ all( target_arch = "aarch64" , any( target_os = "macos" , target_os = "ios" , target_os = "tvos" ) ) ,
422
428
target_family = "wasm" ,
423
429
target_arch = "asmjs" ,
424
430
target_os = "uefi" ,
@@ -445,7 +451,10 @@ impl<'f> VaListImpl<'f> {
445
451
target_arch = "s390x" ,
446
452
target_arch = "x86_64"
447
453
) ,
448
- any( not( target_arch = "aarch64" ) , not( any( target_os = "macos" , target_os = "ios" ) ) ) ,
454
+ any(
455
+ not( target_arch = "aarch64" ) ,
456
+ not( any( target_os = "macos" , target_os = "ios" , target_os = "tvos" ) )
457
+ ) ,
449
458
not( target_family = "wasm" ) ,
450
459
not( target_arch = "asmjs" ) ,
451
460
not( target_os = "uefi" ) ,
0 commit comments