X86: Rename the CLMUL target feature to PCLMUL.
[oota-llvm.git] / lib / Target / X86 / X86Subtarget.h
index 766f2daccbdbb4eb36185c3ea542bac7cf93a3cb..544491f205d1ea4143727b26e65be113498828dc 100644 (file)
@@ -85,8 +85,8 @@ protected:
   /// HasAES - Target has AES instructions
   bool HasAES;
 
-  /// HasCLMUL - Target has carry-less multiplication
-  bool HasCLMUL;
+  /// HasPCLMUL - Target has carry-less multiplication
+  bool HasPCLMUL;
 
   /// HasFMA3 - Target has 3-operand fused multiply-add
   bool HasFMA3;
@@ -203,7 +203,7 @@ public:
   bool has3DNowA() const { return X863DNowLevel >= ThreeDNowA; }
   bool hasPOPCNT() const { return HasPOPCNT; }
   bool hasAES() const { return HasAES; }
-  bool hasCLMUL() const { return HasCLMUL; }
+  bool hasPCLMUL() const { return HasPCLMUL; }
   bool hasFMA3() const { return HasFMA3; }
   bool hasFMA4() const { return HasFMA4; }
   bool hasXOP() const { return HasXOP; }