diff options
| author | Jim Grosbach <grosbach@apple.com> | 2010-11-30 19:08:32 +0000 | 
|---|---|---|
| committer | Jim Grosbach <grosbach@apple.com> | 2010-11-30 19:08:32 +0000 | 
| commit | 8b166186857ff33ccc281848880f5da33bd08706 (patch) | |
| tree | 518cd3db33f6c778f668090fb6f8d1bd3345f571 | |
| parent | f01da1a7dff55641818627a8838eda4ca072c236 (diff) | |
| download | bcm5719-llvm-8b166186857ff33ccc281848880f5da33bd08706.tar.gz bcm5719-llvm-8b166186857ff33ccc281848880f5da33bd08706.zip  | |
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.
llvm-svn: 120444
| -rw-r--r-- | llvm/utils/TableGen/ARMDecoderEmitter.cpp | 5 | 
1 files changed, 0 insertions, 5 deletions
diff --git a/llvm/utils/TableGen/ARMDecoderEmitter.cpp b/llvm/utils/TableGen/ARMDecoderEmitter.cpp index 78f1256cb5b..64e25c9ad8c 100644 --- a/llvm/utils/TableGen/ARMDecoderEmitter.cpp +++ b/llvm/utils/TableGen/ARMDecoderEmitter.cpp @@ -1580,11 +1580,6 @@ ARMDEBackend::populateInstruction(const CodeGenInstruction &CGI,          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.      //  | 

