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

Unified Diff: src/codegen.h

Issue 570001: Fix build error on Win32, fix spelling of DebugerStatementStub. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/arm/codegen-arm.cc ('k') | src/codegen.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/codegen.h
===================================================================
--- src/codegen.h (revision 3775)
+++ src/codegen.h (working copy)
@@ -348,8 +348,8 @@
UncatchableExceptionType type);
// Number of pointers/values returned.
- int const result_size_;
- ExitFrame::Mode const mode_;
+ const int result_size_;
+ const ExitFrame::Mode mode_;
// Minor key encoding
class ExitFrameModeBits: public BitField<ExitFrame::Mode, 0, 1> {};
@@ -390,10 +390,10 @@
};
-// Mark the debugger statemet to be recognized by debugger (by the MajorKey)
-class DebugerStatementStub : public CodeStub {
+// Mark the debugger statement to be recognized by debugger (by the MajorKey)
+class DebuggerStatementStub : public CodeStub {
public:
- DebugerStatementStub() { }
+ DebuggerStatementStub() { }
void Generate(MacroAssembler* masm);
@@ -401,7 +401,7 @@
Major MajorKey() { return DebuggerStatement; }
int MinorKey() { return 0; }
- const char* GetName() { return "DebugerStatementStub"; }
+ const char* GetName() { return "DebuggerStatementStub"; }
};
« no previous file with comments | « src/arm/codegen-arm.cc ('k') | src/codegen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698