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

Unified Diff: src/code-stubs.h

Issue 535113003: Remove incorrect FINAL attribute from MajorKey declarations. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 3 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/code-stubs.h
diff --git a/src/code-stubs.h b/src/code-stubs.h
index a2738dface63aa81b4d0eab7d17f6cc1a7acd5b9..2d1f09b1cd87ce7ba0e4c73053bdd661baf7984d 100644
--- a/src/code-stubs.h
+++ b/src/code-stubs.h
@@ -837,7 +837,7 @@ class CallICStub: public PlatformCodeStub {
void GenerateMiss(MacroAssembler* masm, IC::UtilityId id);
private:
- virtual inline Major MajorKey() const FINAL OVERRIDE;
+ virtual inline Major MajorKey() const OVERRIDE;
virtual void PrintState(OStream& os) const OVERRIDE; // NOLINT
@@ -1158,7 +1158,7 @@ class BinaryOpICStub : public HydrogenCodeStub {
static const int kRight = 1;
private:
- virtual inline Major MajorKey() const FINAL OVERRIDE;
+ virtual inline Major MajorKey() const OVERRIDE;
static void GenerateAheadOfTime(Isolate* isolate,
const BinaryOpIC::State& state);
@@ -1906,7 +1906,7 @@ class LoadICTrampolineStub : public PlatformCodeStub {
return static_cast<ExtraICState>(minor_key_);
}
- virtual inline Major MajorKey() const FINAL OVERRIDE;
+ virtual inline Major MajorKey() const OVERRIDE;
private:
LoadIC::State state() const {
@@ -1962,7 +1962,7 @@ class VectorLoadStub : public HydrogenCodeStub {
}
private:
- virtual inline Major MajorKey() const FINAL OVERRIDE;
+ virtual inline Major MajorKey() const OVERRIDE;
LoadIC::State state() const { return LoadIC::State(GetExtraICState()); }
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698