@@ -238,7 +238,7 @@ impl fmt::Debug for c_void {
238
238
not( target_arch = "s390x" ) ,
239
239
not( target_arch = "x86_64" )
240
240
) ,
241
- all( target_arch = "aarch64" , any( target_os = "macos" , target_os = "ios" ) ) ,
241
+ all( target_arch = "aarch64" , any( target_os = "macos" , target_os = "ios" , target_os = "tvos" ) ) ,
242
242
target_family = "wasm" ,
243
243
target_arch = "asmjs" ,
244
244
target_os = "uefi" ,
@@ -267,7 +267,7 @@ pub struct VaListImpl<'f> {
267
267
not( target_arch = "s390x" ) ,
268
268
not( target_arch = "x86_64" )
269
269
) ,
270
- all( target_arch = "aarch64" , any( target_os = "macos" , target_os = "ios" ) ) ,
270
+ all( target_arch = "aarch64" , any( target_os = "macos" , target_os = "ios" , target_os = "tvos" ) ) ,
271
271
target_family = "wasm" ,
272
272
target_arch = "asmjs" ,
273
273
target_os = "uefi" ,
@@ -292,7 +292,7 @@ impl<'f> fmt::Debug for VaListImpl<'f> {
292
292
/// http://infocenter.arm.com/help/topic/com.arm.doc.ihi0055b/IHI0055B_aapcs64.pdf
293
293
#[ cfg( all(
294
294
target_arch = "aarch64" ,
295
- not( any( target_os = "macos" , target_os = "ios" ) ) ,
295
+ not( any( target_os = "macos" , target_os = "ios" , target_os = "tvos" ) ) ,
296
296
not( target_os = "uefi" ) ,
297
297
not( windows) ,
298
298
) ) ]
@@ -389,7 +389,10 @@ pub struct VaList<'a, 'f: 'a> {
389
389
not( target_arch = "s390x" ) ,
390
390
not( target_arch = "x86_64" )
391
391
) ,
392
- all( target_arch = "aarch64" , any( target_os = "macos" , target_os = "ios" ) ) ,
392
+ all(
393
+ target_arch = "aarch64" ,
394
+ any( target_os = "macos" , target_os = "ios" , target_os = "tvos" )
395
+ ) ,
393
396
target_family = "wasm" ,
394
397
target_arch = "asmjs" ,
395
398
target_os = "uefi" ,
@@ -404,7 +407,10 @@ pub struct VaList<'a, 'f: 'a> {
404
407
target_arch = "s390x" ,
405
408
target_arch = "x86_64"
406
409
) ,
407
- any( not( target_arch = "aarch64" ) , not( any( target_os = "macos" , target_os = "ios" ) ) ) ,
410
+ any(
411
+ not( target_arch = "aarch64" ) ,
412
+ not( any( target_os = "macos" , target_os = "ios" , target_os = "tvos" ) )
413
+ ) ,
408
414
not( target_family = "wasm" ) ,
409
415
not( target_arch = "asmjs" ) ,
410
416
not( target_os = "uefi" ) ,
@@ -422,7 +428,7 @@ pub struct VaList<'a, 'f: 'a> {
422
428
not( target_arch = "s390x" ) ,
423
429
not( target_arch = "x86_64" )
424
430
) ,
425
- all( target_arch = "aarch64" , any( target_os = "macos" , target_os = "ios" ) ) ,
431
+ all( target_arch = "aarch64" , any( target_os = "macos" , target_os = "ios" , target_os = "tvos" ) ) ,
426
432
target_family = "wasm" ,
427
433
target_arch = "asmjs" ,
428
434
target_os = "uefi" ,
@@ -449,7 +455,10 @@ impl<'f> VaListImpl<'f> {
449
455
target_arch = "s390x" ,
450
456
target_arch = "x86_64"
451
457
) ,
452
- any( not( target_arch = "aarch64" ) , not( any( target_os = "macos" , target_os = "ios" ) ) ) ,
458
+ any(
459
+ not( target_arch = "aarch64" ) ,
460
+ not( any( target_os = "macos" , target_os = "ios" , target_os = "tvos" ) )
461
+ ) ,
453
462
not( target_family = "wasm" ) ,
454
463
not( target_arch = "asmjs" ) ,
455
464
not( target_os = "uefi" ) ,
0 commit comments