Versions Compared

Key

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

...

In this compliant solution [GCC Bugs], the appropriate call to memcpy() is determined outside the function call.:

Code Block
bgColor#ccccff
langc
#ifdef PLATFORM1
  memcpy(dest, src, 12);
#else
  memcpy(dest, src, 24);
#endif

...

Tool

Version

Checker

Description

ECLAIR

Include Page
ECLAIR_V
ECLAIR_V

macrcall

Fully implemented

 Bibliography

[GCC Bugs]"Non-bugs"
[ISO/IEC 9899:2011]Section 6.10.3, "Macro Replacement"

...