|
From: Jeremy F. <je...@go...> - 2003-12-19 00:24:24
|
CVS commit by fitzhardinge:
VG_(clo_pointercheck) is a Bool, which is a byte.
M +4 -4 vg_dispatch.S 1.14
--- valgrind/coregrind/vg_dispatch.S #1.13:1.14
@@ -78,6 +78,6 @@
/* check to see if we're doing pointer checking */
- movl VG_(clo_pointercheck), %eax
- testl %eax,%eax
+ movb VG_(clo_pointercheck), %al
+ testb %al,%al
jz 1f
@@ -148,6 +148,6 @@
run_innerloop_exit:
- movl VG_(clo_pointercheck), %ebx
- testl %ebx,%ebx
+ movb VG_(clo_pointercheck), %bl
+ testb %bl,%bl
jz 1f
|