Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/llvm/lib/Target/ARM/MCTargetDesc/
DARMAsmBackend.cpp819 uint64_t EncValue = 0; in adjustFixupValue() local
820 EncValue |= (Value & 0x800) << 15; in adjustFixupValue()
821 EncValue |= (Value & 0x700) << 4; in adjustFixupValue()
822 EncValue |= (Value & 0xff); in adjustFixupValue()
823 return swapHalfWords(EncValue, Endian == support::little); in adjustFixupValue()