IDiaSymbol::get_isOptimizedForSpeed
Retrieves a flag indicating whether the function is optimized for speed.
Syntax
HRESULT get_isOptimizedForSpeed(
BOOL* pRetVal);
Parameters
pRetVal
[out] A pointer to a BOOL
that specifies whether the function is optimized for speed. TRUE
would indicate that the function was compiled with /Ot
telling the compiler to favor fast code (speed).
Return Value
If successful, returns S_OK
; otherwise, returns S_FALSE
or an error code.