Fix x86_64 build
Fix types after recent update: https://android-review.googlesource.com/#/c/83435/ Change-Id: I17ed28af84b7adeb8572e18834e66f3264ec061d Signed-off-by: Pavel Chupin <pavel.v.chupin@intel.com>
This commit is contained in:
parent
000ffd8ab0
commit
7ba84d3108
@ -42,7 +42,7 @@
|
|||||||
* x87 fpu registers are 16bit wide. The upper bits, 31-16, are marked as
|
* x87 fpu registers are 16bit wide. The upper bits, 31-16, are marked as
|
||||||
* RESERVED.
|
* RESERVED.
|
||||||
*/
|
*/
|
||||||
fenv_t __fe_dfl_env = {
|
const fenv_t __fe_dfl_env = {
|
||||||
{
|
{
|
||||||
0xffff0000 | __INITIAL_NPXCW__, /* Control word register */
|
0xffff0000 | __INITIAL_NPXCW__, /* Control word register */
|
||||||
0xffff0000, /* Status word register */
|
0xffff0000, /* Status word register */
|
||||||
|
@ -97,7 +97,7 @@ typedef struct {
|
|||||||
* A floating-point control mode is a system variable whose value may be set by
|
* A floating-point control mode is a system variable whose value may be set by
|
||||||
* the user to affect the subsequent behavior of floating-point arithmetic.
|
* the user to affect the subsequent behavior of floating-point arithmetic.
|
||||||
*/
|
*/
|
||||||
typedef __uint_32 fexcept_t;
|
typedef __uint32_t fexcept_t;
|
||||||
|
|
||||||
__END_DECLS
|
__END_DECLS
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user