Fixed accidental use of reserved identifier in r214709.
authorDaniel Sanders <daniel.sanders@imgtec.com>
Mon, 4 Aug 2014 13:27:03 +0000 (13:27 +0000)
committerDaniel Sanders <daniel.sanders@imgtec.com>
Mon, 4 Aug 2014 13:27:03 +0000 (13:27 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@214715 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/MC/MCSubtargetInfo.h

index d7076c0cfe3b26bd30caeb74e499038b9f41ac60..97d5a7ac3a47b872b42e8dc9cc101d5a7b108e2b 100644 (file)
@@ -67,7 +67,7 @@ public:
 
   /// setFeatureBits - Set the feature bits.
   ///
-  void setFeatureBits(uint64_t _FeatureBits) { FeatureBits = _FeatureBits; }
+  void setFeatureBits(uint64_t FeatureBits_) { FeatureBits = FeatureBits_; }
 
   /// InitMCProcessorInfo - Set or change the CPU (optionally supplemented with
   /// feature string). Recompute feature bits and scheduling model.