[Bug target/60811] New: arc/arc.c:2135: possible bad argument to abs
dcb314 at hotmail dot com
gcc-bugzilla@gcc.gnu.org
Thu Apr 10 18:10:00 GMT 2014
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=60811
Bug ID: 60811
Summary: arc/arc.c:2135: possible bad argument to abs
Product: gcc
Version: 4.9.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: target
Assignee: unassigned at gcc dot gnu.org
Reporter: dcb314 at hotmail dot com
Static analyser cppcheck says
[trunk/gcc/config/arc/arc.c:2135]: (error) Invalid abs() argument nr 1. A
non-boolean value is required.
Source code is
gcc_assert (epilogue_p || abs (*first_offset <= 127));
Maybe better code might be
gcc_assert (epilogue_p || abs (*first_offset) <= 127);
More information about the Gcc-bugs
mailing list