From: Tom Hughes Date: Fri, 26 Aug 2005 09:57:17 +0000 (+0000) Subject: Restore %ebx properly instead of restoring %edx twice. X-Git-Tag: svn/VALGRIND_3_1_0~516 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0f4337446c5994c657b4280aab8dfcdf39e88b16;p=thirdparty%2Fvalgrind.git Restore %ebx properly instead of restoring %edx twice. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@4524 --- diff --git a/none/tests/x86/cmpxchg8b.c b/none/tests/x86/cmpxchg8b.c index 6e252f1ce1..6f5b6eb872 100644 --- a/none/tests/x86/cmpxchg8b.c +++ b/none/tests/x86/cmpxchg8b.c @@ -37,7 +37,7 @@ asm("\n" "\tpopl %edx\n" "\tpopl %ecx\n" - "\tpopl %edx\n" + "\tpopl %ebx\n" "\tpopl %eax\n" "\tret\n" );