Revision: 17674
Author: [email protected]
Date: Tue Nov 12 19:40:56 2013 UTC
Log: MIPS: Fix build after r17654.
FullCodeGenerator::EmitMathFloor(CallRuntime* expr) function is not used
anywhere and breaks the build.
BUG=
[email protected]
Review URL: https://codereview.chromium.org/69293010
Patch from Balazs Kilvady <[email protected]>.
http://code.google.com/p/v8/source/detail?r=17674
Modified:
/branches/bleeding_edge/src/mips/full-codegen-mips.cc
=======================================
--- /branches/bleeding_edge/src/mips/full-codegen-mips.cc Tue Nov 12
19:05:38 2013 UTC
+++ /branches/bleeding_edge/src/mips/full-codegen-mips.cc Tue Nov 12
19:40:56 2013 UTC
@@ -3822,16 +3822,6 @@
__ CallRuntime(Runtime::kMath_sqrt, 1);
context()->Plug(v0);
}
-
-
-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) {
--
--
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.