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)
llvm-svn: 214715

llvm/include/llvm/MC/MCSubtargetInfo.h

index d7076c0..97d5a7a 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.