Reviewers: Sven Panne,
Message:
Committed patchset #1 manually as r18345.
Description:
Fix build after r18344
"log" is an overloaded function, it cannot be resolved without explicit
parameter type information
[email protected]
Committed: https://code.google.com/p/v8/source/detail?r=18345
Please review this at https://codereview.chromium.org/117723004/
SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge
Affected files (+6, -1 lines):
M src/assembler.cc
Index: src/assembler.cc
diff --git a/src/assembler.cc b/src/assembler.cc
index
0578c76fab63ca9cf32c8d3aedeb73ab7498d36a..1076be0271142cf60f878b332125df4baa5f4286
100644
--- a/src/assembler.cc
+++ b/src/assembler.cc
@@ -1388,10 +1388,15 @@ ExternalReference
ExternalReference::address_of_regexp_stack_memory_size(
#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.