Revision: 18345
Author: [email protected]
Date: Wed Dec 18 11:08:10 2013 UTC
Log: Fix build after r18344
"log" is an overloaded function, it cannot be resolved without explicit
parameter type information
[email protected]
Review URL: https://codereview.chromium.org/117723004
http://code.google.com/p/v8/source/detail?r=18345
Modified:
/branches/bleeding_edge/src/assembler.cc
=======================================
--- /branches/bleeding_edge/src/assembler.cc Wed Dec 18 10:40:26 2013 UTC
+++ /branches/bleeding_edge/src/assembler.cc Wed Dec 18 11:08:10 2013 UTC
@@ -1388,10 +1388,15 @@
#endif // V8_INTERPRETED_REGEXP
+static double math_log_double(double x) {
+ return log(x);
+}
+
+
ExternalReference ExternalReference::math_log_double_function(
Isolate* isolate) {
return ExternalReference(Redirect(isolate,
- FUNCTION_ADDR(log),
+ FUNCTION_ADDR(math_log_double),
BUILTIN_FP_CALL));
}
--
--
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.