mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-20 10:24:12 +00:00
Tidy up. Trailing whitespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142591 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -527,7 +527,7 @@ static bool tryAddingSymbolicOperand(uint64_t Address, int32_t Value,
|
||||
MI.addOperand(MCOperand::CreateExpr(ARMMCExpr::CreateLower16(Expr, *Ctx)));
|
||||
else if (SymbolicOp.VariantKind == LLVMDisassembler_VariantKind_None)
|
||||
MI.addOperand(MCOperand::CreateExpr(Expr));
|
||||
else
|
||||
else
|
||||
assert(0 && "bad SymbolicOp.VariantKind");
|
||||
|
||||
return true;
|
||||
@ -3074,7 +3074,7 @@ static DecodeStatus DecodePostIdxReg(llvm::MCInst &Inst, unsigned Insn,
|
||||
|
||||
static DecodeStatus DecodeThumbBLXOffset(llvm::MCInst &Inst, unsigned Val,
|
||||
uint64_t Address, const void *Decoder) {
|
||||
if (!tryAddingSymbolicOperand(Address,
|
||||
if (!tryAddingSymbolicOperand(Address,
|
||||
(Address & ~2u) + SignExtend32<22>(Val << 1) + 4,
|
||||
true, 4, Inst, Decoder))
|
||||
Inst.addOperand(MCOperand::CreateImm(SignExtend32<22>(Val << 1)));
|
||||
|
Reference in New Issue
Block a user