// Test that -Wparentheses does not give bogus warnings in the// presence of templates for non-plain assignment. Bug 17120.// { dg-do compile }// { dg-options "-Wparentheses" }template<typename_Tp>inline_Tpcmath_power(_Tp__x,unsignedint__n){while(__n>>=1);return__x;}intmain(){cmath_power(1.0,3);}