summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/test-i386.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/test-i386.c b/tests/test-i386.c
index d5fe1c402c..cb35f21257 100644
--- a/tests/test-i386.c
+++ b/tests/test-i386.c
@@ -1,6 +1,7 @@
#define _GNU_SOURCE
#include <stdlib.h>
#include <stdio.h>
+#include <string.h>
#include <inttypes.h>
#include <math.h>
#include <signal.h>
@@ -591,7 +592,7 @@ void test_fbcd(double a)
asm("fld1\n"\
prefix "fnstenv %1\n"\
prefix "fldenv %1\n"\
- : "=t" (res) : "m" (*(env)) : "st");\
+ : "=t" (res) : "m" (*(env)));\
printf("res=%f\n", res);\
printf("fpuc=%04x fpus=%04x fptag=%04x\n",\
(env)->fpuc,\
@@ -601,7 +602,7 @@ void test_fbcd(double a)
asm("fld1\n"\
prefix "fnsave %1\n"\
prefix "frstor %1\n"\
- : "=t" (res) : "m" (*(env)) : "st");\
+ : "=t" (res) : "m" (*(env)));\
printf("res=%f\n", res);\
printf("fpuc=%04x fpus=%04x fptag=%04x\n",\
(env)->fpuc,\