reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
91 if (BitWidth == 1) 92 rv.IntVal = APInt(BitWidth, ((bool (*)())(intptr_t)FPtr)()); 93 else if (BitWidth <= 8) 94 rv.IntVal = APInt(BitWidth, ((char (*)())(intptr_t)FPtr)()); 95 else if (BitWidth <= 16) 96 rv.IntVal = APInt(BitWidth, ((short (*)())(intptr_t)FPtr)()); 97 else if (BitWidth <= 32) 98 rv.IntVal = APInt(BitWidth, ((int (*)())(intptr_t)FPtr)()); 99 else if (BitWidth <= 64) 100 rv.IntVal = APInt(BitWidth, ((int64_t (*)())(intptr_t)FPtr)());