This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Compiler/TMS320F28335: MISRA false possitive at rule violation

Part Number: TMS320F28335

Tool/software: TI C/C++ Compiler

Hello,

I have the following function:

void memory_copy(const Uint16 *SourceAddr,const Uint16* SourceEndAddr, Uint16* DestAddr)
{
	while(SourceAddr < SourceEndAddr) {
	    *DestAddr++ = *SourceAddr++;
	}
}

and when I set the compiler to check for MISRA violations, the compiler throws the following error: 

Description Resource Path Location Type
#1460-D (MISRA-C:2004 16.7/A) A pointer parameter in a function prototype should be declared as pointer to const if the pointer is not used to modify the addressed object ("DestAddr: const Uint16 *") 

So, it is complaining that im not declaring DestAddr as "const Uint16*" because according to the compiler im not modifying the content of the address. However, I am actually modifying it. In fact, if I run the following code instead (which is esentially the same), the error is not issued:

void memory_copy(const Uint16 *SourceAddr,const Uint16* SourceEndAddr, Uint16* DestAddr)
{
	while(SourceAddr < SourceEndAddr) {
	    *DestAddr = *SourceAddr;
	    DestAddr++;
	    SourceAddr++;
	}
}

Is it a compiler bug? Or I am missing something/doing something wrong?

Thanks a lot!

Jorge.

  • Thank you for informing us of this issue, and supplying a concise test case. I can reproduce the same behavior.  This does appear to be a problem in the compiler.  I filed the entry CODEGEN-6958 in the SDOWP system to have this investigated.  You are welcome to follow it with the SDOWP link below in my signature.

    Thanks and regards,

    -George