Reviewers: danno, Yang, Paul Lind, kisg, Jakob, palfia,

Description:
MIPS: Fix build after r17654.

FullCodeGenerator::EmitMathFloor(CallRuntime* expr) function is not used
anywhere and breaks the build.

BUG=

Please review this at https://codereview.chromium.org/69293010/

SVN Base: ssh://192.168.4.100/data/kilvadyb/v8m-rb-sim@gbl

Affected files (+0, -10 lines):
  M src/mips/full-codegen-mips.cc


Index: src/mips/full-codegen-mips.cc
diff --git a/src/mips/full-codegen-mips.cc b/src/mips/full-codegen-mips.cc
index 56c9240dc5f57daa22cf7290d62fe507505f8cdb..cba38d09963c145e34164dbecb13d38317decae0 100644
--- a/src/mips/full-codegen-mips.cc
+++ b/src/mips/full-codegen-mips.cc
@@ -3794,16 +3794,6 @@ void FullCodeGenerator::EmitMathSqrt(CallRuntime* expr) {
 }


-void FullCodeGenerator::EmitMathFloor(CallRuntime* expr) {
-  // Load the argument on the stack and call the runtime function.
-  ZoneList<Expression*>* args = expr->arguments();
-  ASSERT(args->length() == 1);
-  VisitForStackValue(args->at(0));
-  __ CallRuntime(Runtime::kMath_floor, 1);
-  context()->Plug(v0);
-}
-
-
 void FullCodeGenerator::EmitCallFunction(CallRuntime* expr) {
   ZoneList<Expression*>* args = expr->arguments();
   ASSERT(args->length() >= 2);


--
--
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/groups/opt_out.

Reply via email to