[SystemZ] Add z13 vector facility and MC support
[oota-llvm.git] / lib / Target / SystemZ / SystemZSubtarget.h
index c99e552abb1be54fd4430620a3cdbef974f5e061..9a1f593f526570481f7414c905436a3f72e6d14b 100644 (file)
@@ -44,6 +44,7 @@ protected:
   bool HasMiscellaneousExtensions;
   bool HasTransactionalExecution;
   bool HasProcessorAssist;
+  bool HasVector;
 
 private:
   Triple TargetTriple;
@@ -110,6 +111,9 @@ public:
   // Return true if the target has the processor-assist facility.
   bool hasProcessorAssist() const { return HasProcessorAssist; }
 
+  // Return true if the target has the vector facility.
+  bool hasVector() const { return HasVector; }
+
   // Return true if GV can be accessed using LARL for reloc model RM
   // and code model CM.
   bool isPC32DBLSymbol(const GlobalValue *GV, Reloc::Model RM,