Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(220)

Side by Side Diff: deps/third_party/valgrind/scripts/vbug210481.patch

Issue 550036: svn copy tools/valgrind/{*.patch,build-*.sh} deps/third_party/valgrind/script... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/
Patch Set: '' Created 10 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
Property Changes:
Added: svn:mergeinfo
Merged /branches/chrome_webkit_merge_branch/tools/valgrind/vbug210481.patch:r69-2775
OLDNEW
1 # See https://bugs.kde.org/show_bug.cgi?id=210481 1 # See https://bugs.kde.org/show_bug.cgi?id=210481
2 Index: guest_amd64_toIR.c 2 Index: guest_amd64_toIR.c
3 =================================================================== 3 ===================================================================
4 --- VEX/priv/guest_amd64_toIR.c (Revision 1924) 4 --- VEX/priv/guest_amd64_toIR.c (Revision 1924)
5 +++ VEX/priv/guest_amd64_toIR.c (Arbeitskopie) 5 +++ VEX/priv/guest_amd64_toIR.c (Arbeitskopie)
6 @@ -14597,7 +14597,7 @@ 6 @@ -14597,7 +14597,7 @@
7 /* There is no encoding for 32-bit pop in 64-bit mode. 7 /* There is no encoding for 32-bit pop in 64-bit mode.
8 So sz==4 actually means sz==8. */ 8 So sz==4 actually means sz==8. */
9 if (haveF2orF3(pfx)) goto decode_failure; 9 if (haveF2orF3(pfx)) goto decode_failure;
10 - vassert(sz == 2 || sz == 4); 10 - vassert(sz == 2 || sz == 4);
11 + vassert(sz == 2 || sz == 4 || sz == 8); 11 + vassert(sz == 2 || sz == 4 || sz == 8);
12 if (sz == 4) sz = 8; 12 if (sz == 4) sz = 8;
13 if (sz != 8) goto decode_failure; // until we know a sz==2 test case exis ts 13 if (sz != 8) goto decode_failure; // until we know a sz==2 test case exis ts
14 14
OLDNEW
« no previous file with comments | « deps/third_party/valgrind/scripts/vbug205541.patch ('k') | deps/third_party/valgrind/scripts/xml-loadadr.patch » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698