From 070893f4252a9f3bb9aaf919780a104eb020605e Mon Sep 17 00:00:00 2001 From: bellard Date: Sun, 13 Jul 2003 17:27:19 +0000 Subject: [PATCH] RedHat 9 fix git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@323 c046a42c-6fe2-441c-8c8c-71466251a162 --- tests/test-i386.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/tests/test-i386.c b/tests/test-i386.c index 30923238ab..2411869569 100644 --- a/tests/test-i386.c +++ b/tests/test-i386.c @@ -6,6 +6,7 @@ #include #include #include +#include #include #include #include @@ -855,7 +856,6 @@ void test_segs(void) #endif /* do some tests with fs or gs */ asm volatile ("movl %0, %%fs" : : "r" (MK_SEL(1))); - asm volatile ("movl %0, %%gs" : : "r" (MK_SEL(2))); seg_data1[1] = 0xaa; seg_data2[1] = 0x55; @@ -863,7 +863,12 @@ void test_segs(void) asm volatile ("fs movzbl 0x1, %0" : "=r" (res)); printf("FS[1] = %02x\n", res); - asm volatile ("gs movzbl 0x1, %0" : "=r" (res)); + asm volatile ("pushl %%gs\n" + "movl %1, %%gs\n" + "gs movzbl 0x1, %0\n" + "popl %%gs\n" + : "=r" (res) + : "r" (MK_SEL(2))); printf("GS[1] = %02x\n", res); /* tests with ds/ss (implicit segment case) */