From: Jim Grosbach Date: Thu, 10 Mar 2011 19:05:48 +0000 (+0000) Subject: Memory barrier instructions don't need special handling in tblgen anymore. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=5e97338c8d21b7fc561037b222917cb0af3fd66e;p=oota-llvm.git 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 --- diff --git a/utils/TableGen/ARMDecoderEmitter.cpp b/utils/TableGen/ARMDecoderEmitter.cpp index a2403e6a1d5..53e1be12a41 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;