Browse Source

tests/tcg: fix a few warnings

Signed-off-by: Catalin Patulea <catalinp@google.com>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
stable-1.3
Catalin Patulea 14 years ago
committed by Blue Swirl
parent
commit
49cdaea18b
  1. 3
      tests/tcg/hello-i386.c
  2. 2
      tests/tcg/test-i386.c

3
tests/tcg/hello-i386.c

@ -1,6 +1,6 @@
#include <asm/unistd.h>
static inline volatile void exit(int status)
static inline void exit(int status)
{
int __res;
__asm__ volatile ("movl %%ecx,%%ebx\n"\
@ -17,6 +17,7 @@ static inline int write(int fd, const char * buf, int len)
"popl %%ebx\n"\
: "=a" (status) \
: "0" (__NR_write),"S" ((long)(fd)),"c" ((long)(buf)),"d" ((long)(len)));
return status;
}
void _start(void)

2
tests/tcg/test-i386.c

@ -785,7 +785,7 @@ void fpu_clear_exceptions(void)
long double fpregs[8];
} float_env32;
asm volatile ("fnstenv %0\n" : : "m" (float_env32));
asm volatile ("fnstenv %0\n" : "=m" (float_env32));
float_env32.fpus &= ~0x7f;
asm volatile ("fldenv %0\n" : : "m" (float_env32));
}

Loading…
Cancel
Save