Skip to content
This repository was archived by the owner on Oct 12, 2022. It is now read-only.

Commit 4fb608e

Browse files
author
Radu Racariu
committed
[uClibc] add mips32 architecture
1 parent 7d2cbb5 commit 4fb608e

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

src/core/stdc/fenv.d

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,16 @@ else version( CRuntime_UClibc )
397397

398398
alias fexcept_t = ushort;
399399
}
400-
else version(ARM)
400+
else version (MIPS32)
401+
{
402+
struct fenv_t
403+
{
404+
uint __fp_control_register;
405+
}
406+
407+
alias fexcept_t = ushort;
408+
}
409+
else version (ARM)
401410
{
402411
struct fenv_t
403412
{

0 commit comments

Comments
 (0)