History log of /llvm-project/lldb/test/API/lang/cpp/fpnan/main.cpp (Results 1 – 1 of 1)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: llvmorg-21-init, llvmorg-19.1.7, llvmorg-19.1.6, llvmorg-19.1.5, llvmorg-19.1.4, llvmorg-19.1.3, llvmorg-19.1.2, llvmorg-19.1.1
# 9690b30b 18-Sep-2024 Ilia Kuklin <ikuklin@accesssoftek.com>

[LLDB] Fix operators <= and >= returning a wrong result when comparing to a floating point NaN (#108060)

Implement operators `<=` and `>=` to explicitly check the comparison
results to be `cmpLessT

[LLDB] Fix operators <= and >= returning a wrong result when comparing to a floating point NaN (#108060)

Implement operators `<=` and `>=` to explicitly check the comparison
results to be `cmpLessThan` or `cmpEqual` instead of negating the result
of `operators<`.

Fixes #85947

show more ...