suggest parentheses around arithmetic in operand of '|'

作者:XscKernel

原作网址:http://blog.csdn.net/xsckernel/article/details/8890990


在向linux下gcc移植ucos的时候遇到如下问题:warning: suggest parentheses around arithmetic in operand of '|' 

//GPG4 is setted as LCD_PWREN 

rGPGUP=rGPGUP&(~(1<<4))|(1<<4); // Pull-up disable  


提示建议用括号扩住 '|' 运算,修改为如下形式即可:

//GPG4 is setted as LCD_PWREN 

rGPGUP= (rGPGUP&(~(1<<4))) | (1<<4); // Pull-up disable 


你可能感兴趣的:(suggest parentheses around arithmetic in operand of '|')