diff options
| author | Craig Topper <craig.topper@gmail.com> | 2011-10-05 03:29:32 +0000 |
|---|---|---|
| committer | Craig Topper <craig.topper@gmail.com> | 2011-10-05 03:29:32 +0000 |
| commit | 41e59c7c344c7f854f8f29774d660c0e62b90af8 (patch) | |
| tree | be3204e7e7abc2a68ea718d444979c79773c4c4c /lib/Target | |
| parent | 13d31e0368c84bc0acc9e8ac88333685cc393edb (diff) | |
| download | external_llvm-41e59c7c344c7f854f8f29774d660c0e62b90af8.zip external_llvm-41e59c7c344c7f854f8f29774d660c0e62b90af8.tar.gz external_llvm-41e59c7c344c7f854f8f29774d660c0e62b90af8.tar.bz2 | |
Change C++ style comments to C style comments in X86 disassembler. Patch from Joe Abbey.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@141162 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target')
| -rw-r--r-- | lib/Target/X86/Disassembler/X86DisassemblerDecoder.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/X86/Disassembler/X86DisassemblerDecoder.c b/lib/Target/X86/Disassembler/X86DisassemblerDecoder.c index 2508c06..9ad8532 100644 --- a/lib/Target/X86/Disassembler/X86DisassemblerDecoder.c +++ b/lib/Target/X86/Disassembler/X86DisassemblerDecoder.c @@ -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; |
