summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorJim Grosbach <grosbach@apple.com>2011-03-10 19:05:48 +0000
committerJim Grosbach <grosbach@apple.com>2011-03-10 19:05:48 +0000
commit5e97338c8d21b7fc561037b222917cb0af3fd66e (patch)
treeae02e19a8e7099ef0449553280b71c582ffa55b7 /utils
parent6b96fe7e146f7eb594e67210c6bef511ad0a2058 (diff)
downloadllvm-5e97338c8d21b7fc561037b222917cb0af3fd66e.tar.gz
llvm-5e97338c8d21b7fc561037b222917cb0af3fd66e.tar.bz2
llvm-5e97338c8d21b7fc561037b222917cb0af3fd66e.tar.xz
Memory barrier instructions don't need special handling in tblgen anymore.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@127419 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r--utils/TableGen/ARMDecoderEmitter.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/utils/TableGen/ARMDecoderEmitter.cpp b/utils/TableGen/ARMDecoderEmitter.cpp
index a2403e6a1d..53e1be12a4 100644
--- a/utils/TableGen/ARMDecoderEmitter.cpp
+++ b/utils/TableGen/ARMDecoderEmitter.cpp
@@ -1570,9 +1570,7 @@ ARMDEBackend::populateInstruction(const CodeGenInstruction &CGI,
return false;
if (TN == TARGET_ARM) {
- // FIXME: what about Int_MemBarrierV6 and Int_SyncBarrierV6?
- if ((Name != "Int_MemBarrierV7" && Name != "Int_SyncBarrierV7") &&
- Form == ARM_FORMAT_PSEUDO)
+ if (Form == ARM_FORMAT_PSEUDO)
return false;
if (thumbInstruction(Form))
return false;