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

Unified Diff: src/hydrogen-instructions.cc

Issue 18154004: Replace custom builtin invocation instructions by a generic version (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 5 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
Index: src/hydrogen-instructions.cc
diff --git a/src/hydrogen-instructions.cc b/src/hydrogen-instructions.cc
index 08837c04fa66b7733f90c2c2464cab9222d1beb8..09f895425475612b52e5fe5aa7c2ed0be04f82c8 100644
--- a/src/hydrogen-instructions.cc
+++ b/src/hydrogen-instructions.cc
@@ -3113,11 +3113,6 @@ HType HInstanceOf::CalculateInferredType() {
}
-HType HDeleteProperty::CalculateInferredType() {
- return HType::Boolean();
-}
-
-
HType HInstanceOfKnownGlobal::CalculateInferredType() {
return HType::Boolean();
}
@@ -3634,13 +3629,6 @@ HInstruction* HShr::New(
#undef H_CONSTANT_DOUBLE
-void HIn::PrintDataTo(StringStream* stream) {
- key()->PrintNameTo(stream);
- stream->Add(" ");
- object()->PrintNameTo(stream);
-}
-
-
void HBitwise::PrintDataTo(StringStream* stream) {
stream->Add(Token::Name(op_));
stream->Add(" ");

Powered by Google App Engine
This is Rietveld 408576698