]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Add a missing case and remove the bogus associated comment.
authorJulian Seward <jseward@acm.org>
Tue, 27 May 2008 16:08:24 +0000 (16:08 +0000)
committerJulian Seward <jseward@acm.org>
Tue, 27 May 2008 16:08:24 +0000 (16:08 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@8135

memcheck/mc_machine.c

index 07491ad1ef34f061379ac54a4351cd3afa642ead..ac5908e2d828f8250e05af5272fc7080330761bf 100644 (file)
@@ -511,11 +511,7 @@ static Int get_otrack_shadow_offset_wrk ( Int offset, Int szB )
    if (o == GOF(FTOP)     && szB == 4) return -1;
    if (o == GOF(FPROUND)  && szB == 8) return -1;
    if (o == GOF(EMWARN)   && szB == 4) return -1;
-   /* The amd64 front end doesn't actually use FC3210.  It should
-      be done away with.
-      if (offset == offsetof(VexGuestAMD64State,guest_FC3210) && szB==4)
-        return -1;
-   */
+   if (o == GOF(FC3210)   && szB == 8) return -1;
 
    /* XMM registers */
    if (o >= GOF(XMM0)  && o+sz <= GOF(XMM0) +SZB(XMM0))  return GOF(XMM0);