Skip to content
Commit 93c690eb authored by Justin Chadwell's avatar Justin Chadwell
Browse files

Enable -Wshift-overflow=2 to check for undefined shift behavior



The -Wshift-overflow=2 option enables checks for left bit shifts.
Specifically, the option will warn when the result of a shift will be
placed into a signed integer and overflow the sign bit there, which
results in undefined behavior.

To avoid the warnings from these checks, the left operand of a shift can
be made an unsigned integer by using the U() macro or appending the u
suffix.

Change-Id: I50c67bedab86a9fdb6c87cfdc3e784f01a22d560
Signed-off-by: default avatarJustin Chadwell <justin.chadwell@arm.com>
parent 3e43121e
Loading
Loading
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment