[llvm] r330363 - [X86] Remove non-existant instruction name from X86DisassemblerTables.cpp.
Craig Topper via llvm-commits
llvm-commits at lists.llvm.org
Thu Apr 19 13:44:15 PDT 2018
Author: ctopper
Date: Thu Apr 19 13:44:15 2018
New Revision: 330363
URL: http://llvm.org/viewvc/llvm-project?rev=330363&view=rev
Log:
[X86] Remove non-existant instruction name from X86DisassemblerTables.cpp.
This instruction was removed a long time so we don't need to check for it here.
Modified:
llvm/trunk/utils/TableGen/X86DisassemblerTables.cpp
Modified: llvm/trunk/utils/TableGen/X86DisassemblerTables.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/TableGen/X86DisassemblerTables.cpp?rev=330363&r1=330362&r2=330363&view=diff
==============================================================================
--- llvm/trunk/utils/TableGen/X86DisassemblerTables.cpp (original)
+++ llvm/trunk/utils/TableGen/X86DisassemblerTables.cpp Thu Apr 19 13:44:15 2018
@@ -1085,7 +1085,6 @@ void DisassemblerTables::setTableFields(
if(previousInfo.name == "NOOP" && (newInfo.name == "XCHG16ar" ||
newInfo.name == "XCHG32ar" ||
- newInfo.name == "XCHG32ar64" ||
newInfo.name == "XCHG64ar"))
continue; // special case for XCHG*ar and NOOP
More information about the llvm-commits
mailing list