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

References

lib/MC/MCInstPrinter.cpp
   88     if (Value < 0) {
   89       if (Value == std::numeric_limits<int64_t>::min())
   90         return format<int64_t>("-0x8000000000000000", Value);
   91       return format("-0x%" PRIx64, -Value);
   93     return format("0x%" PRIx64, Value);
   95     if (Value < 0) {
   96       if (Value == std::numeric_limits<int64_t>::min())
   97         return format<int64_t>("-8000000000000000h", Value);
   98       if (needsLeadingZero(-(uint64_t)(Value)))
   99         return format("-0%" PRIx64 "h", -Value);
  100       return format("-%" PRIx64 "h", -Value);
  102     if (needsLeadingZero((uint64_t)(Value)))
  103       return format("0%" PRIx64 "h", Value);
  104     return format("%" PRIx64 "h", Value);