Home
last modified time | relevance | path

Searched refs:hex_rep (Results 1 – 1 of 1) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/
H A DMCInstPrinter.cpp25 static const char hex_rep[] = "0123456789abcdef"; in dumpBytes() local
32 OS << hex_rep[(i & 0xF0) >> 4]; in dumpBytes()
33 OS << hex_rep[i & 0xF]; in dumpBytes()