The line above that DCHECK sets the minus_zero_value to a new HeapNumber of
value -0.0. It seems like something fundamental is not working in your
environment.
Can you print the values
1) -0.0
2) std::signbit(-0.0)
3) roots.minus_zero_value()->Number()
4) std::signbit(roots.minus_zero_value()->Number())
just before the DCHECK?
The output should be -0.0, 1, -0.0, 1.

E.g.
printf("%f, %d, %f, %d\n", -0.0, std::signbit(-0.0),
roots.minus_zero_value()->Number(),
std::signbit(roots.minus_zero_value()->Number()));


On Tue, Nov 27, 2018 at 4:00 AM madana gopal <madanagopal...@gmail.com>
wrote:

> Even with latest branch, we are getting the same error.
>
> We are using different toolchain from the one given in V8 builds?. Any
> specific flag or something to add to prevent this crash?.
>
> Thanks.
>
> Regards,
> Madan
>
> --
> --
> v8-users mailing list
> v8-users@googlegroups.com
> http://groups.google.com/group/v8-users
> ---
> You received this message because you are subscribed to the Google Groups
> "v8-users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to v8-users+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>
-- 

Clemens Hammacher

Software Engineer

cleme...@google.com

Google Germany GmbH

Erika-Mann-Straße 33

80636 München

Geschäftsführer: Paul Manicle, Halimah DeLaine Prado

Registergericht und -nummer: Hamburg, HRB 86891

Sitz der Gesellschaft: Hamburg

Diese E-Mail ist vertraulich. Falls sie diese fälschlicherweise erhalten
haben sollten, leiten Sie diese bitte nicht an jemand anderes weiter,
löschen Sie alle Kopien und Anhänge davon und lassen Sie mich bitte wissen,
dass die E-Mail an die falsche Person gesendet wurde.



This e-mail is confidential. If you received this communication by mistake,
please don't forward it to anyone else, please erase all copies and
attachments, and please let me know that it has gone to the wrong person.

-- 
-- 
v8-users mailing list
v8-users@googlegroups.com
http://groups.google.com/group/v8-users
--- 
You received this message because you are subscribed to the Google Groups 
"v8-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to v8-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to