summaryrefslogtreecommitdiffstats
path: root/llvm/utils
diff options
context:
space:
mode:
authorJim Grosbach <grosbach@apple.com>2011-03-11 20:51:07 +0000
committerJim Grosbach <grosbach@apple.com>2011-03-11 20:51:07 +0000
commit52594d99e49f994691fabe45dbd4e07f8abb44d4 (patch)
tree98ce841ed2dd6636686a688e269d5ff3ff49a667 /llvm/utils
parent59eea670f8a08457a7d77736824368c551d0f073 (diff)
downloadbcm5719-llvm-52594d99e49f994691fabe45dbd4e07f8abb44d4.tar.gz
bcm5719-llvm-52594d99e49f994691fabe45dbd4e07f8abb44d4.zip
Remove dead code. These ARM instruction definitions don't exist.
llvm-svn: 127491
Diffstat (limited to 'llvm/utils')
-rw-r--r--llvm/utils/TableGen/ARMDecoderEmitter.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/llvm/utils/TableGen/ARMDecoderEmitter.cpp b/llvm/utils/TableGen/ARMDecoderEmitter.cpp
index 34123f4533a..aa8db1e0ba7 100644
--- a/llvm/utils/TableGen/ARMDecoderEmitter.cpp
+++ b/llvm/utils/TableGen/ARMDecoderEmitter.cpp
@@ -1588,20 +1588,6 @@ ARMDEBackend::populateInstruction(const CodeGenInstruction &CGI,
// The following special cases are for conflict resolutions.
//
- // NEON NLdStFrm conflict resolutions:
- //
- // 1. Ignore suffix "odd" and "odd_UPD", prefer the "even" register-
- // numbered ones which have the same Asm format string.
- // 2. Ignore VST2d64_UPD, which conflicts with VST1q64_UPD.
- // 3. Ignore VLD2d64_UPD, which conflicts with VLD1q64_UPD.
- // 4. Ignore VLD1q[_UPD], which conflicts with VLD1q64[_UPD].
- // 5. Ignore VST1q[_UPD], which conflicts with VST1q64[_UPD].
- if (Name.endswith("odd") || Name.endswith("odd_UPD") ||
- Name == "VST2d64_UPD" || Name == "VLD2d64_UPD" ||
- Name == "VLD1q" || Name == "VLD1q_UPD" ||
- Name == "VST1q" || Name == "VST1q_UPD")
- return false;
-
// RSCSri and RSCSrs set the 's' bit, but are not predicated. We are
// better off using the generic RSCri and RSCrs instructions.
if (Name == "RSCSri" || Name == "RSCSrs") return false;
OpenPOWER on IntegriCloud