Can I use a prgama to disable wanrnings that I know I want to ignore in C when compiling with pgcc like I can with MS Visual Studio and other compilers. For example:
#ifdef _MSC_VER
pragma warning( disable : 4127 )/* disable warning that conditional expression*/
/* is constant, TRUE or FALSE in if */
pragma warning( disable : 4056 )/* disable bogus underflow warning in MS VS*/
pragma warning( disable : 4514 )/* disable “inline function removed since not used”, MS VS*/
#endif
#ifdef __INTEL_COMPILER