From: Nemanja Ivanovic Date: Wed, 14 Sep 2016 14:09:39 +0000 (+0000) Subject: Adding missing directive for Power9. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=34771911935846fb258d9c8bbc63a38df454f034;p=llvm Adding missing directive for Power9. There is currently no codegen for Power9 that depends on the directive so this is NFC for now but will be important in the future. This was missed in r268950 so I'm adding it now. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@281473 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/PowerPC/PPC.td b/lib/Target/PowerPC/PPC.td index ac1c3060046..279c430e1ce 100644 --- a/lib/Target/PowerPC/PPC.td +++ b/lib/Target/PowerPC/PPC.td @@ -203,7 +203,7 @@ def ProcessorFeatures { list Power8FeatureList = !listconcat(Power7FeatureList, Power8SpecificFeatures); list Power9SpecificFeatures = - [FeatureP9Altivec, FeatureP9Vector, FeatureISA3_0]; + [DirectivePwr9, FeatureP9Altivec, FeatureP9Vector, FeatureISA3_0]; list Power9FeatureList = !listconcat(Power8FeatureList, Power9SpecificFeatures); }