(os_name, target_arch)
| 65 | |
| 66 | |
| 67 | def has_long_double(os_name, target_arch): |
| 68 | target_arch = normalize_arch(target_arch) |
| 69 | |
| 70 | if os_name == 'win': |
| 71 | return '0' |
| 72 | |
| 73 | if os_name == 'mac' and target_arch == 'arm64': |
| 74 | return '0' |
| 75 | |
| 76 | if target_arch == 'arm': |
| 77 | return '0' |
| 78 | |
| 79 | return '1' |
| 80 | |
| 81 | |
| 82 | def uses_exec_trampoline_table(os_name, target_arch): |
no test coverage detected
searching dependent graphs…