Lines Matching full:integer
98 bool "Perform checking for integer divide-by-zero"
99 depends on $(cc-option,-fsanitize=integer-divide-by-zero)
104 This option enables -fsanitize=integer-divide-by-zero which checks
105 for integer division by zero. This is effectively redundant with the
120 bool "Perform checking for integer arithmetic wrap-around"
123 depends on $(cc-option,-fsanitize=signed-integer-overflow)
124 depends on $(cc-option,-fsanitize=unsigned-integer-overflow)
125 depends on $(cc-option,-fsanitize=implicit-signed-integer-truncation)
126 depends on $(cc-option,-fsanitize=implicit-unsigned-integer-truncation)
129 This option enables all of the sanitizers involved in integer overflow
130 (wrap-around) mitigation: signed-integer-overflow, unsigned-integer-overflow,
131 implicit-signed-integer-truncation, and implicit-unsigned-integer-truncation.