Controls support for inline intrinsic optimizations strcopy and strlen.
#pragma inline_intrinsics [ on | off | reset ]
In the strcopy optimization, the system copies the string via a set of move-immediate commands to the source address. The system applies this optimization if the source is a string constant of fewer than 64 characters, and optimizing is set for speed.
In the strlen optimization, a move-immediate of the length of the string to the result, replaces the function call. The system applies this optimization, if the source is a string constant.
The default value is ON.