我能用valgrind检测整数溢出缺陷吗?

Syr*_*ena 6 valgrind integer-overflow

我能用valgrind检测整数溢出缺陷吗?它中的哪个工具可以做到这一点?

小智 7

Valgrind没有可以检测整数溢出的工具.您可能使用gcc选项捕获这些错误:

-ftrapv This option generates traps for signed overflow on addition, subtraction, multiplication
operations.
Run Code Online (Sandbox Code Playgroud)