Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Misra rule 42
#1
Hi,

I have a question concerning rule 42, which states : \"comma operator shall not be used, except in the control expression of a for loop\".

Now what is \"the control expression\" in following instruction : for(i = 0; i < 10; i++) {...}

Is it \"i = 0\" or \"i < 10\" or \"i++\" ?

Currently we use a GreenHills compiler with build-in misra checking and they are saying it is \"i < 10\".
Searching on google:
IAR and ABRAXAS says it is \"i = 0\" and \"i++\"

Now hopefully you can give me the correct answer.

Thank you,

Jeroen
Reply
#2
The technical term is actually \"controlling expression\", not \"control expression\".

The wording is here:
http://c0x.coding-guidelines.com/6.8.5.3.html

and the footnote specifying which of the expressions is the controlling expression (the middle one) is here
http://c0x.coding-guidelines.com/6.8.6.html
<r>Applications conformance testing: <URL url="http://www.knosof.co.uk/cbook">http://www.knosof.co.uk/cbook</URL></r>
Reply
#3
Hi, many thankx, so greenhills was right.

Anyway, where came this rule from? Because the comma operator is only usefull in the two other expressions, like:

for(i = 0,j = 0; i < 10; i++, j++)

Greetings,

Jeroen
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)