1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

Change C++ style comments to C style comments in X86 disassembler. Patch from Joe Abbey.

llvm-svn: 141162
This commit is contained in:
Craig Topper 2011-10-05 03:29:32 +00:00
parent 5789485111
commit c211a8e5a6

View File

@ -933,7 +933,7 @@ static int getID(struct InternalInstruction* insn) {
spec = specifierForUID(instructionID);
// Borrow opcode from one of the other XCHGar opcodes
/* Borrow opcode from one of the other XCHGar opcodes */
insn->opcode = 0x91;
if (getIDWithAttrMask(&instructionIDWithNewOpcode,
@ -948,7 +948,7 @@ static int getID(struct InternalInstruction* insn) {
specWithNewOpcode = specifierForUID(instructionIDWithNewOpcode);
// Change back
/* Change back */
insn->opcode = 0x90;
insn->instructionID = instructionIDWithNewOpcode;