Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
valgrind で整数オーバーフローの欠陥を検出できますか? そして、その中のどのツールがそれを行うことができますか?
Valgrind には、整数オーバーフローを検出できるツールがありません。gcc オプションを使用すると、次のバグを検出できる可能性があります。
-ftrapv This option generates traps for signed overflow on addition, subtraction, multiplication operations.