6.93 __TT, __TTT, __TTA, __TTAT Intrinsic Function

Inserts the specified instruction. Avoid using these intrinsic functions directly. Instead use the functions cmse_TT, cmse_TTT, cmse_TT_fptr, and cmse_TTT_fptr, which are defined in the header file arm_cmse.h.

Note: XC32 pass to the compiler -mcmse.

Suggested Replacement

cmse_TT
cmse_TTT
cmse_TTA
cmse_TTAT

Caveats

None.

Examples

Consider migrating IAR code such as:
unsigned int __TT(unsigned int); 

unsigned int __TTT(unsugned int); 
unsigned int __TTA(unsigned int); 
unsigned int __TTAT(unsigned int); 
to MPLAB XC codes similar to:
cmse_address_info_t cmse_TT (void *) 
cmse_address_info_t cmse_TTT (void *)
cmse_address_info_t cmse_TTA (void *)
cmse_address_info_t cmse_TTAT (void *) 

Further Information

None.