-
Notifications
You must be signed in to change notification settings - Fork 677
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Incorrect ToInt32 semantics #160
Labels
Milestone
Comments
ruben-ayrapetyan
added
bug
Undesired behaviour
ecma core
Related to core ECMA functionality
labels
Jun 9, 2015
ruben-ayrapetyan
added a commit
that referenced
this issue
Jun 22, 2015
…nt32) conversion routines. Related issue: #160 JerryScript-DCO-1.0-Signed-off-by: Ruben Ayrapetyan [email protected]
ruben-ayrapetyan
added a commit
that referenced
this issue
Jun 22, 2015
…nt32) conversion routines. Related issue: #160 JerryScript-DCO-1.0-Signed-off-by: Ruben Ayrapetyan [email protected]
ruben-ayrapetyan
added a commit
that referenced
this issue
Jun 22, 2015
…nt32) conversion routines. Related issue: #160 JerryScript-DCO-1.0-Signed-off-by: Ruben Ayrapetyan [email protected]
Cause of failure: behaviour of C++ conversion from float to integer type is undefined, if floating point value without fractional part cannot be represented in destination type (4.9. Floating-integral conversions). Pull request with fix: #226 |
ruben-ayrapetyan
added a commit
that referenced
this issue
Jun 23, 2015
…nt32) conversion routines. Related issue: #160 JerryScript-DCO-1.0-Signed-off-by: Ruben Ayrapetyan [email protected]
ruben-ayrapetyan
added a commit
that referenced
this issue
Jun 23, 2015
…nt32) conversion routines. Related issue: #160 JerryScript-DCO-1.0-Signed-off-by: Ruben Ayrapetyan [email protected]
ruben-ayrapetyan
added a commit
that referenced
this issue
Jun 23, 2015
…nt32) conversion routines. Related issue: #160 JerryScript-DCO-1.0-Signed-off-by: Ruben Ayrapetyan [email protected]
ruben-ayrapetyan
added a commit
that referenced
this issue
Jun 23, 2015
…nt32) conversion routines. Related issue: #160 JerryScript-DCO-1.0-Signed-off-by: Ruben Ayrapetyan [email protected]
ruben-ayrapetyan
added a commit
that referenced
this issue
Jun 23, 2015
…nt32) conversion routines. Related issue: #160 JerryScript-DCO-1.0-Signed-off-by: Ruben Ayrapetyan [email protected]
This was referenced May 17, 2020
This was referenced Oct 20, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello.
The following unit test fails on armv7-hf linux build and on x86_64 in unittests mode build (unit tests are built with O3):
Seems that
ecma_number_to_int32
is implemented incorrectly.The text was updated successfully, but these errors were encountered: