1 // Given a function pointer, return the code address.
4 // The function descriptor is actually multiple words,
5 // but we don't care about anything except the first.
6 # define UNWRAP_FUNCTION_DESCRIPTOR(X) (*(void **)(X))
8 # define UNWRAP_FUNCTION_DESCRIPTOR(X) (X)