You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Current integer-overflow checking assertions are inserted whenever an LLVM arithmetic with overflow intrinsics occur. This is incorrect because such intrinsics are not necessarily used for integer-overflow checking. For example, __builtin_add_overflow is compiled to one of the intrinsics. We need to decouple the handling of these intrinsics with overflow checking.
The text was updated successfully, but these errors were encountered:
Current integer-overflow checking assertions are inserted whenever an LLVM arithmetic with overflow intrinsics occur. This is incorrect because such intrinsics are not necessarily used for integer-overflow checking. For example,
__builtin_add_overflow
is compiled to one of the intrinsics. We need to decouple the handling of these intrinsics with overflow checking.The text was updated successfully, but these errors were encountered: