gcc-plugins fixes for v5.12-rc2
- Fix coding style issues (Jason Yan) -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEpcP2jyKd1g9yPm4TiXL039xtwCYFAmBCursACgkQiXL039xt wCZWzw//aBKQN8oUisNVhzWnUOpXEFV1GfJPaqgdZv89fCSnC20ojxzxXG4bTVod mnDvkYYAce3A8uLyACdt2iVdXCKF5LbiglkipqK6S4N/0DzoN4IBhgEtmNxMswjc LwXTzG3R7lu6J2CQatk0uRd2QLVWBHkjyMWRBpg3ryYJoj2ROscWlCL86u3Kdwyh 2XKozHs+mTrDz7sOHeDlEfeJTF7AniN3Px6ajf0st0up5NIiZ70uuaHqhKMWuYji 4fnO2Pf2G0b9QaB6W7k0S/M2VGhmd+1h3psI9PJJ3glrKe3WsHRm9Akq8MF08vr7 UEvYqEPuU6/YJDEXJ3C22xEeN9HBfXgrX1qAf/1/mE9c1AGvIPNmQYp+xE1xSXzO 79GRPf1OrZLntJuQG9ir1BrhryehrynhH2dS0F1ByT2u/lYpGw9o+vu7rpnQ6DUR sjnhJSCyzDMHdZPzaUldFaydEquDE5LohY2TQDeWtT6tBtkjIONj0YqGlm2IlzFL OlM0YkjSd4fDlKIhMbP/Vm+ScAJfs3dR7cWwn3F3JIoDTZf5f4IAbsKCyPJ3wIHm A0BEXs9bZ4MCmNPtZDuSGExnHs+te4yBoahkvw/84TG2PBJVOCDdB4F7noFu47vJ 1QvL7TiRTr782fqZQwSTUZZHxmc6NhZRySsXRIHBA4AyboPnnYk= =oow8 -----END PGP SIGNATURE----- Merge tag 'gcc-plugins-v5.12-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux Pull gcc-plugins fixes from Kees Cook: "Tiny gcc-plugin fixes for v5.12-rc2. These issues are small but have been reported a couple times now by static analyzers, so best to get them fixed to reduce the noise. :) - Fix coding style issues (Jason Yan)" * tag 'gcc-plugins-v5.12-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux: gcc-plugins: latent_entropy: remove unneeded semicolon gcc-plugins: structleak: remove unneeded variable 'ret'
This commit is contained in:
commit
de5bd6c54b
|
@ -524,7 +524,7 @@ static unsigned int latent_entropy_execute(void)
|
|||
while (bb != EXIT_BLOCK_PTR_FOR_FN(cfun)) {
|
||||
perturb_local_entropy(bb, local_entropy);
|
||||
bb = bb->next_bb;
|
||||
};
|
||||
}
|
||||
|
||||
/* 4. mix local entropy into the global entropy variable */
|
||||
perturb_latent_entropy(local_entropy);
|
||||
|
|
|
@ -170,7 +170,6 @@ static void initialize(tree var)
|
|||
static unsigned int structleak_execute(void)
|
||||
{
|
||||
basic_block bb;
|
||||
unsigned int ret = 0;
|
||||
tree var;
|
||||
unsigned int i;
|
||||
|
||||
|
@ -200,7 +199,7 @@ static unsigned int structleak_execute(void)
|
|||
initialize(var);
|
||||
}
|
||||
|
||||
return ret;
|
||||
return 0;
|
||||
}
|
||||
|
||||
#define PASS_NAME structleak
|
||||
|
|
Loading…
Reference in New Issue