mirror of
https://github.com/RPCSX/llvm.git
synced 2025-02-11 07:15:26 +00:00
Fix whitespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@128370 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e9c50732f7
commit
d645151ac6
@ -844,13 +844,13 @@ void MCAsmStreamer::AddEncodingComment(const MCInst &Inst) {
|
||||
OS << "0b";
|
||||
for (unsigned j = 8; j--;) {
|
||||
unsigned Bit = (Code[i] >> j) & 1;
|
||||
|
||||
|
||||
unsigned FixupBit;
|
||||
if (getContext().getTargetAsmInfo().isLittleEndian())
|
||||
FixupBit = i * 8 + j;
|
||||
else
|
||||
FixupBit = i * 8 + (7-j);
|
||||
|
||||
|
||||
if (uint8_t MapEntry = FixupMap[FixupBit]) {
|
||||
assert(Bit == 0 && "Encoder wrote into fixed up bit!");
|
||||
OS << char('A' + MapEntry - 1);
|
||||
|
Loading…
x
Reference in New Issue
Block a user