[llvm-commits] [llvm] r120444 - /llvm/trunk/utils/TableGen/ARMDecoderEmitter.cpp
Jim Grosbach
grosbach at apple.com
Tue Nov 30 11:08:32 PST 2010
Author: grosbach
Date: Tue Nov 30 13:08:32 2010
New Revision: 120444
URL: http://llvm.org/viewvc/llvm-project?rev=120444&view=rev
Log:
The VLDMQ/VSTMQ instructions are reprented as true Pseudo-insts now (i.e.,
no extra encoding information), so we no longer need to special case them
here.
Modified:
llvm/trunk/utils/TableGen/ARMDecoderEmitter.cpp
Modified: llvm/trunk/utils/TableGen/ARMDecoderEmitter.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/TableGen/ARMDecoderEmitter.cpp?rev=120444&r1=120443&r2=120444&view=diff
==============================================================================
--- llvm/trunk/utils/TableGen/ARMDecoderEmitter.cpp (original)
+++ llvm/trunk/utils/TableGen/ARMDecoderEmitter.cpp Tue Nov 30 13:08:32 2010
@@ -1580,11 +1580,6 @@
Name == "MOVr_TC")
return false;
- // VLDMQ/VSTMQ can be handled with the more generic VLDMD/VSTMD.
- if (Name == "VLDMQ" || Name == "VLDMQ_UPD" ||
- Name == "VSTMQ" || Name == "VSTMQ_UPD")
- return false;
-
//
// The following special cases are for conflict resolutions.
//
More information about the llvm-commits
mailing list