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

Unified Diff: regexp2000/src/objects.h

Issue 11271: Building on regexp-ia32. (Closed)
Patch Set: Made it compile correctly. Created 12 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 side-by-side diff with in-line comments
Download patch
Index: regexp2000/src/objects.h
diff --git a/regexp2000/src/objects.h b/regexp2000/src/objects.h
index 1c8f7b09f7aa4035cc0a1ba79398f4bc4e0f46f3..6984380e623dc82aacb9a703d415538a01a65cb2 100644
--- a/regexp2000/src/objects.h
+++ b/regexp2000/src/objects.h
@@ -2117,14 +2117,17 @@ class Code: public HeapObject {
CALL_IC,
STORE_IC,
KEYED_STORE_IC,
+ // No more than eight kinds. The value currently encoded in three bits in
Erik Corry 2008/11/21 13:03:04 Please add an assert somewhere.
Lasse Reichstein 2008/11/24 08:32:33 Done.
+ // Flags.
// Pseudo-kinds.
+ REGEXP = BUILTIN,
FIRST_IC_KIND = LOAD_IC,
LAST_IC_KIND = KEYED_STORE_IC
};
enum {
- NUMBER_OF_KINDS = LAST_IC_KIND + 1
+ NUMBER_OF_KINDS = KEYED_STORE_IC + 1
};
// A state indicates that inline cache in this Code object contains

Powered by Google App Engine
This is Rietveld 408576698