What I'm trying to do is find all explicit casts from type double or float to any other type in some source files I have. Is there a built-in gcc way to do this? Language is C. Thanks!
|
Since casts are explicitly legal, and the right way to perform weird conversions, it's highly unlikely that gcc would contain an option to warn about them Instead, depending on how huge your source is, you might be able to get away with:
to give you all of the double or float variables. Since c isn't a regular language, it's not trivial (with shell tools) to parse this into a list of double or float variables, but if your source is small enough, doing this by hand is easy.
From there would show you many of your casts. |
|||
|
|
|
If your C code can also be compiled in C++ mode, you can use g++'s You can determine whether Clang has any warnings which will trigger for a particular coding pattern by using its |
|||
|
|
|
Worst case you can looking for those keywords directly into your source files... |
|||||||
|
|
Well I think there is no such option. After all, a warning is issued by the compiler in order to warn you from things you might have done unintentionally. An explicit cast, however, is basically a way to tell your compiler "shut up, I know what I am doing". |
|||||||||
|
(double)or(float)in your source? – Robert Harvey♦ Apr 25 '12 at 15:27