ARMv7a has the PKH instructions.
authorJim Grosbach <grosbach@apple.com>
Wed, 14 Sep 2011 23:16:34 +0000 (23:16 +0000)
committerJim Grosbach <grosbach@apple.com>
Wed, 14 Sep 2011 23:16:34 +0000 (23:16 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@139753 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.cpp

index 9badf9378259719e223ed1a4cca91e8e89f8eb4a..23f7f145610f54525dca2798361d90e6cfebae4a 100644 (file)
@@ -63,8 +63,8 @@ std::string ARM_MC::ParseARMTriple(StringRef TT) {
         //       FeatureT2XtPk
         ARMArchFeature = "+v7,+noarm,+db,+hwdiv,+t2dsp,t2xtpk";
       } else
-        // v7a: FeatureNEON, FeatureDB, FeatureDSPThumb2
-        ARMArchFeature = "+v7,+neon,+db,+t2dsp";
+        // v7a: FeatureNEON, FeatureDB, FeatureDSPThumb2, FeatureT2XtPk
+        ARMArchFeature = "+v7,+neon,+db,+t2dsp,+t2xtpk";
     } else if (SubVer == '6') {
       if (Len >= Idx+3 && TT[Idx+1] == 't' && TT[Idx+2] == '2')
         ARMArchFeature = "+v6t2";