]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Implement ADC Eb,Gb. Truly an unpopular instruction if it took anyone this
authorJulian Seward <jseward@acm.org>
Wed, 29 May 2002 23:38:23 +0000 (23:38 +0000)
committerJulian Seward <jseward@acm.org>
Wed, 29 May 2002 23:38:23 +0000 (23:38 +0000)
long to fall across it.

git-svn-id: svn://svn.valgrind.org/valgrind/trunk@340

configure.in
coregrind/vg_to_ucode.c
vg_to_ucode.c

index bc47a234a3406e59415ff88001a6b577729f5a09..529ee9641cff12aae12c69cc8805f253bf7995bd 100644 (file)
@@ -1,7 +1,7 @@
 # Process this file with autoconf to produce a configure script.
 AC_INIT(vg_clientmalloc.c)
 AM_CONFIG_HEADER(config.h)
-AM_INIT_AUTOMAKE(valgrind, 20020524)
+AM_INIT_AUTOMAKE(valgrind, 20020530)
 
 AM_MAINTAINER_MODE
 
index d6b03bc3e50e70ca7f1d22ee07fba26f719d175e..da2871c3f184b9eff3d1c1ef0d5c436f7533533f 100644 (file)
@@ -3607,6 +3607,9 @@ static Addr disInstr ( UCodeBlock* cb, Addr eip, Bool* isEnd )
       eip = dis_op2_E_G ( cb, OR, True, sz, eip, "or" );
       break;
 
+   case 0x12: /* ADC Eb,Gb */
+      eip = dis_op2_E_G ( cb, ADC, True, 1, eip, "adc" );
+      break;
    case 0x13: /* ADC Ev,Gv */
       eip = dis_op2_E_G ( cb, ADC, True, sz, eip, "adc" );
       break;
index d6b03bc3e50e70ca7f1d22ee07fba26f719d175e..da2871c3f184b9eff3d1c1ef0d5c436f7533533f 100644 (file)
@@ -3607,6 +3607,9 @@ static Addr disInstr ( UCodeBlock* cb, Addr eip, Bool* isEnd )
       eip = dis_op2_E_G ( cb, OR, True, sz, eip, "or" );
       break;
 
+   case 0x12: /* ADC Eb,Gb */
+      eip = dis_op2_E_G ( cb, ADC, True, 1, eip, "adc" );
+      break;
    case 0x13: /* ADC Ev,Gv */
       eip = dis_op2_E_G ( cb, ADC, True, sz, eip, "adc" );
       break;