Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Include Page
c:INT33 Modulo
c:INT33 Modulo

Division

...

Include Page
c:INT33 NCCE
c:INT33 NCCE
Include Page
c:INT33 CS
c:INT33 CS
Include Page
c:INT33 NCCE
c:INT33 NCCE
Include Page
c:INT33 CS
c:INT33 CS

Non-Compliant Code Example

...

Code Block
signed long sl1, sl2, result;

if ( (sl2 == 0) || ( (sl1 == LONG_MIN) && (sl2 == -1) ) ) {
  /* handle error condition */
}
result = sl1 / sl2;

Modulo

...

Non-Compliant Code Example

...