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

Unified Diff: src/code-stubs.h

Issue 131483003: Be sure to also register the BinaryOpWithAllocationSiteStub. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 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 | « no previous file | src/code-stubs.cc » ('j') | 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 7e6c00060fff1f033d563b5b53c992aa14401435..da86071b9db94f7ea896be84d19b3dcb68e5c915 100644
--- a/src/code-stubs.h
+++ b/src/code-stubs.h
@@ -1171,6 +1171,9 @@ class BinaryOpICWithAllocationSiteStub V8_FINAL : public PlatformCodeStub {
class BinaryOpWithAllocationSiteStub V8_FINAL : public BinaryOpICStub {
public:
+ BinaryOpWithAllocationSiteStub(Token::Value op, OverwriteMode mode)
+ : BinaryOpICStub(op, mode) {}
+
explicit BinaryOpWithAllocationSiteStub(const BinaryOpIC::State& state)
: BinaryOpICStub(state) {}
« no previous file with comments | « no previous file | src/code-stubs.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698