Skip to content

Commit

Permalink
Revert "rename appveyor.yml to .appveyor.yml"
Browse files Browse the repository at this point in the history
This reverts commit 3abf305.
  • Loading branch information
aquynh committed Mar 14, 2016
1 parent 3abf305 commit 4a4418a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
File renamed without changes.
10 changes: 2 additions & 8 deletions arch/X86/X86IntelInstPrinter.c
Original file line number Diff line number Diff line change
Expand Up @@ -420,10 +420,7 @@ static void _printOperand(MCInst *MI, unsigned OpNo, SStream *O)
printRegName(O, MCOperand_getReg(Op));
} else if (MCOperand_isImm(Op)) {
int64_t imm = MCOperand_getImm(Op);
if (MI->csh->imm_unsigned == CS_OPT_ON)
printImm(MI->csh->syntax, O, imm, true);
else
printImm(MI->csh->syntax, O, imm, false);
printImm(MI->csh->syntax, O, imm, false);
}
}

Expand Down Expand Up @@ -848,10 +845,7 @@ static void printOperand(MCInst *MI, unsigned OpNo, SStream *O)
// printf(">>> id = %u\n", MI->flat_insn->id);
switch(MI->flat_insn->id) {
default:
if (MI->csh->imm_unsigned == CS_OPT_ON)
printImm(MI->csh->syntax, O, imm, true);
else
printImm(MI->csh->syntax, O, imm, false);
printImm(MI->csh->syntax, O, imm, false);
break;

case X86_INS_MOVABS:
Expand Down

0 comments on commit 4a4418a

Please sign in to comment.