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

Side by Side Diff: third_party/yasm/patched-yasm/libyasm/inttree.c

Issue 11364046: Update Yasm to 1.2.0 (Yasm Part 1/3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/
Patch Set: Created 8 years, 1 month 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
OLDNEW
1 #include "util.h" 1 #include "util.h"
2 /*@unused@*/ RCSID("$Id: inttree.c 2262 2010-01-03 02:46:11Z peter $");
3 2
4 #include <stdlib.h> 3 #include <stdlib.h>
5 #include <stdio.h> 4 #include <stdio.h>
6 #include <limits.h> 5 #include <limits.h>
7 #include <math.h> 6 #include <math.h>
8 #include "coretype.h" 7 #include "coretype.h"
9 #include "inttree.h" 8 #include "inttree.h"
10 9
11 #define VERIFY(condition) \ 10 #define VERIFY(condition) \
12 if (!(condition)) { \ 11 if (!(condition)) { \
(...skipping 870 matching lines...) Expand 10 before | Expand all | Expand 10 after
883 VERIFY(it->root->high == INT_MAX); 882 VERIFY(it->root->high == INT_MAX);
884 VERIFY(it->root->maxHigh == INT_MAX); 883 VERIFY(it->root->maxHigh == INT_MAX);
885 VERIFY(it->nil->data == NULL); 884 VERIFY(it->nil->data == NULL);
886 VERIFY(it->root->data == NULL); 885 VERIFY(it->root->data == NULL);
887 VERIFY(it->nil->red == 0); 886 VERIFY(it->nil->red == 0);
888 VERIFY(it->root->red == 0); 887 VERIFY(it->root->red == 0);
889 CheckMaxHighFields(it, it->root->left); 888 CheckMaxHighFields(it, it->root->left);
890 } 889 }
891 #endif 890 #endif
892 891
OLDNEW
« no previous file with comments | « third_party/yasm/patched-yasm/libyasm/inttree.h ('k') | third_party/yasm/patched-yasm/libyasm/linemap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698