Visible to Intel only — GUID: GUID-8FECCCCC-321E-48BD-B4B0-B87E2B0321B6
Visible to Intel only — GUID: GUID-8FECCCCC-321E-48BD-B4B0-B87E2B0321B6
regcall, Qregcall
Tells the compiler that the __regcall calling convention should be used for functions that do not directly specify a calling convention.
Linux: |
-regcall |
Windows: |
/Qregcall |
None
OFF |
The __regcall calling convention will only be used if a function explicitly specifies it. |
This option tells the compiler that the __regcall calling convention should be used for functions that do not directly specify a calling convention. This calling convention ensures that as many values as possible are passed or returned in registers.
It ensures that __regcall is the default calling convention for functions in the compilation, unless another calling convention is specified in a declaration.
This calling convention is ignored if it is specified for a function with variable arguments.
Note that all __regcall functions must have prototypes.
None