This repository was archived by the owner on Jan 12, 2024. It is now read-only.
This repository was archived by the owner on Jan 12, 2024. It is now read-only.
Add "-fsanitize=unsigned-integer-overflow ". #884
Open
Description
src\Simulation\Native\build-native-simulator.ps1
The option -fsanitize=unsigned-integer-overflow
reports overflows in NativeSimulator.
Strictly speaking unsigned integer overflow is not an undefined behavior, but is not always intended. The option should be disabled for specific lines of code rather than for the whole NativeSimulator binary.
Adjust that.