]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Looks like I forgot to tell memcheck not to bother to track
authorJulian Seward <jseward@acm.org>
Sun, 27 Mar 2005 02:21:52 +0000 (02:21 +0000)
committerJulian Seward <jseward@acm.org>
Sun, 27 Mar 2005 02:21:52 +0000 (02:21 +0000)
definedness of the sse rounding mode info.  Fixed.

git-svn-id: svn://svn.valgrind.org/vex/trunk@1101

VEX/priv/guest-x86/ghelpers.c
VEX/pub/libvex.h

index a6837f63a32a4be74bcc07201f72e1b043314530..c1d1767d9fe0bf82857420f9d338964f18a7c3df 100644 (file)
@@ -2075,7 +2075,7 @@ VexGuestLayout
 
           /* Describe any sections to be regarded by Memcheck as
              'always-defined'. */
-          .n_alwaysDefd = 18,
+          .n_alwaysDefd = 19,
 
           /* flags thunk: OP and NDEP are always defd, whereas DEP1
              and DEP2 have to be tracked.  See detailed comment in
@@ -2098,7 +2098,8 @@ VexGuestLayout
                  /* 14 */ ALWAYSDEFD(guest_SS),
                  /* 15 */ ALWAYSDEFD(guest_LDT),
                  /* 16 */ ALWAYSDEFD(guest_GDT),
-                 /* 17 */ ALWAYSDEFD(guest_EMWARN)
+                 /* 17 */ ALWAYSDEFD(guest_EMWARN),
+                 /* 18 */ ALWAYSDEFD(guest_SSEROUND)
                }
         };
 
index 9b25a7138216e62c11e144b9e41df81e61df1b2f..ef043efcafb3a02cf4ee6126babe20638d871248 100644 (file)
@@ -153,7 +153,7 @@ extern void LibVEX_ShowAllocStats ( void );
 
 /* The max number of guest state chunks which we can describe as
    always defined (for the benefit of Memcheck). */
-#define VEXGLO_N_ALWAYSDEFD  18
+#define VEXGLO_N_ALWAYSDEFD  19
 
 typedef
    struct {