Disable integer_overflow sanitizer in libm.
Explicitly disables the integer_overflow sanitizer in the libm library. This change should not impact any other build targets. Bug: 30969751 Test: Built with and without SANITIZE_TARGET=integer_overflow Change-Id: I98d0312344086b01394f456d4b953463b5e6cb1a
This commit is contained in:
parent
0ff813fb48
commit
e925418bdd
|
@ -529,6 +529,7 @@ cc_library {
|
|||
sanitize: {
|
||||
address: false,
|
||||
coverage: false,
|
||||
integer_overflow: false,
|
||||
},
|
||||
stl: "none",
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue