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

Unified Diff: src/crankshaft/hydrogen-instructions.h

Issue 2024033005: [crankshaft] HCall and HCallWithDescriptor should not override CalculateInferredType. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 7 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/crankshaft/hydrogen-instructions.h
diff --git a/src/crankshaft/hydrogen-instructions.h b/src/crankshaft/hydrogen-instructions.h
index a779bc23f4b6902355f6238c03b17d355653ced4..514882145f25caffde2ab63445e74542c8c66e6a 100644
--- a/src/crankshaft/hydrogen-instructions.h
+++ b/src/crankshaft/hydrogen-instructions.h
@@ -2161,8 +2161,6 @@ class HCall : public HTemplateInstruction<V> {
this->SetAllSideEffects();
}
- HType CalculateInferredType() final { return HType::Tagged(); }
-
virtual int argument_count() const {
return argument_count_;
}
@@ -2240,8 +2238,6 @@ class HCallWithDescriptor final : public HInstruction {
DECLARE_CONCRETE_INSTRUCTION(CallWithDescriptor)
- HType CalculateInferredType() final { return HType::Tagged(); }
-
// Defines whether this instruction corresponds to a JS call at tail position.
TailCallMode syntactic_tail_call_mode() const {
return SyntacticTailCallModeField::decode(bit_field_);
« 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