Changeset 96666 in vbox for trunk/src/libs/softfloat-3e/source
- Timestamp:
- Sep 8, 2022 10:34:41 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 153549
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/softfloat-3e/source/extF80_sincos.c
r96664 r96666 44 44 static void cordic_sincos( float128_t z, float128_t *pv1, float128_t *pv2 SOFTFLOAT_STATE_DECL_COMMA ) 45 45 { 46 float128_t v1 = { 0, 0}; /* MSC thinks it can be used uninitialized */47 float128_t v2 = { 0, 0}; /* MSC thinks it can be used uninitialized */46 float128_t v1 = { { 0, 0 } }; /* MSC thinks it can be used uninitialized */ 47 float128_t v2 = { { 0, 0 } }; /* MSC thinks it can be used uninitialized */ 48 48 /** @todo TBD: CORDIC kernel should be easily implemented in assembly * */ 49 49
Note:
See TracChangeset
for help on using the changeset viewer.