Difference between revisions of "Compiler Intrinsics"

From CDOT Wiki
Jump to: navigation, search
(Created page with 'Category:Computer Architecture A compiler ''intrinsic'' is a built-in pseudo-function which is typically inlined. Intrinsics are typically used to perform operations which c…')
(No difference)

Revision as of 14:28, 7 January 2014

A compiler intrinsic is a built-in pseudo-function which is typically inlined.

Intrinsics are typically used to perform operations which cannot be performed (or guaranteed) in normal C code, such as atomics.

References