Reviewers: mvstanton,
Description:
Remove incorrect FINAL attribute from MajorKey declarations.
[email protected]
Please review this at https://codereview.chromium.org/535113003/
SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge
Affected files (+4, -4 lines):
M src/code-stubs.h
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()); }
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.