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

Commit f6f537f

Browse files
authored
Merge pull request #2154 from rracariu/master
[uClibc] core.stdc.fenv add mips32 architecture merged-on-behalf-of: Iain Buclaw <[email protected]>
2 parents 7d2cbb5 + 4fb608e commit f6f537f

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)