From e3e86d56c46d37418f4e20645d51731666bf903f Mon Sep 17 00:00:00 2001 From: bellard Date: Wed, 25 Jun 2003 16:21:11 +0000 Subject: [PATCH] gcc3 compile fixes git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@282 c046a42c-6fe2-441c-8c8c-71466251a162 --- tests/test-i386.c | 5 +++-- 1 file 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 #include +#include #include #include #include @@ -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,\ -- 2.11.0