[SystemZ] Add FI[EDX]BRA
[oota-llvm.git] / lib / Target / SystemZ / SystemZSubtarget.h
index 4efb58d097b156ddaeaedcd2336a0422dde271f0..f321cb258a2d2c4e4cd977e58ab2679a74b3e11f 100644 (file)
@@ -30,6 +30,7 @@ protected:
   bool HasDistinctOps;
   bool HasLoadStoreOnCond;
   bool HasHighWord;
+  bool HasFPExtension;
 
 private:
   Triple TargetTriple;
@@ -50,6 +51,9 @@ public:
   // Return true if the target has the high-word facility.
   bool hasHighWord() const { return HasHighWord; }
 
+  // Return true if the target has the floating-point extension facility.
+  bool hasFPExtension() const { return HasFPExtension; }
+
   // 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,