I'm building my AM3358-stuff with the TI ARM compiler. At some point in code I get a
warning #193-D: type qualifier is meaningless on cast type
The position in code that causes this warning is a macro
COMMON_MTYPE_CASES
Unfortunately this macro is quite big, so there is no obvious reason for this warning.
My question: is there a possibility to let the compiler be more specific regarding the exact position of the reason for this warning? I already enabled the option --gen_preprocessor_listing to let the compiler generate .rl-files which contain the whole, preprocessed code (so that COMMON_MTYPE_CASES is recolved), but that does not help very much, the compiler / compiler output still uses the code line out of the .c-file, not out of the -rl-file for issuing the warning.
Thanks!