__declspec(vle_on)

Forces the compiler to use the VLE (Variable Length Encoded) instruction set for a function.

Syntax
__declspec (vle_on) 
  function _prototype;
  
Remarks

Declaring a function's prototype with this declaration specification tells the compiler to use the VLE instruction set when generating object code for the function. The compiler and linker can arrange VLE instructions more compactly than regular instructions.

The VLE instruction set extends the regular instruction set defined by the Freescale Book E Implementation Standard (EIS). For information on the availability of VLE instructions, refer to your processor's documentation.

This declaration specification overrides other compiler settings for VLE code generation.