reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Target/ARM/MCTargetDesc/ARMAddressingModes.h
  642     I |= Sign << 31;
  643     I |= ((Exp & 0x4) != 0 ? 0 : 1) << 30;
  644     I |= ((Exp & 0x4) != 0 ? 0x1f : 0) << 25;
  645     I |= (Exp & 0x3) << 23;
  646     I |= Mantissa << 19;
  647     return bit_cast<float>(I);