()
| 218 | } |
| 219 | |
| 220 | public static final boolean isPPC() { |
| 221 | if (ARCH.startsWith("ppc")) { |
| 222 | return true; |
| 223 | } |
| 224 | return false; |
| 225 | } |
| 226 | |
| 227 | public static final boolean isARM() { |
| 228 | return ARCH.startsWith("arm") || ARCH.startsWith("aarch"); |
no outgoing calls
no test coverage detected