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

Unified Diff: src/assembler.h

Issue 12427: Merge regexp2000 back into bleeding_edge (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: 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: src/assembler.h
===================================================================
--- src/assembler.h (revision 830)
+++ src/assembler.h (working copy)
@@ -50,7 +50,8 @@
class Label : public ZoneObject { // LabelShadows are dynamically allocated.
public:
- INLINE(Label()) { Unuse(); }
+ INLINE(Label())
+ { Unuse(); }
Mads Ager (chromium) 2008/11/25 21:09:41 This looks like an accidental edit?
Erik Corry 2008/11/26 12:18:36 Indeed it does. Fixed.
INLINE(~Label()) { ASSERT(!is_linked()); }
INLINE(void Unuse()) { pos_ = 0; }
@@ -82,8 +83,10 @@
}
friend class Assembler;
+ friend class RegexpAssembler;
friend class Displacement;
friend class LabelShadow;
+ friend class IrregexpAssembler;
};

Powered by Google App Engine
This is Rietveld 408576698