Skip to content

Commit

Permalink
Merge pull request #25254 from matoro/main
Browse files Browse the repository at this point in the history
BUG: mips doesn't use REAL(10)
  • Loading branch information
charris committed Dec 1, 2023
2 parents 904412e + 022e8ae commit eba61c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion numpy/f2py/crackfortran.py
Original file line number Diff line number Diff line change
Expand Up @@ -2466,7 +2466,7 @@ def _selected_real_kind_func(p, r=0, radix=0):
if p < 16:
return 8
machine = platform.machine().lower()
if machine.startswith(('aarch64', 'alpha', 'arm64', 'loongarch', 'power', 'ppc', 'riscv', 's390x', 'sparc')):
if machine.startswith(('aarch64', 'alpha', 'arm64', 'loongarch', 'mips', 'power', 'ppc', 'riscv', 's390x', 'sparc')):
if p <= 33:
return 16
else:
Expand Down

0 comments on commit eba61c7

Please sign in to comment.