[llvm] r214715 - Fixed accidental use of reserved identifier in r214709.
Daniel Sanders
daniel.sanders at imgtec.com
Mon Aug 4 06:27:03 PDT 2014
Author: dsanders
Date: Mon Aug 4 08:27:03 2014
New Revision: 214715
URL: http://llvm.org/viewvc/llvm-project?rev=214715&view=rev
Log:
Fixed accidental use of reserved identifier in r214709.
Modified:
llvm/trunk/include/llvm/MC/MCSubtargetInfo.h
Modified: llvm/trunk/include/llvm/MC/MCSubtargetInfo.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/MC/MCSubtargetInfo.h?rev=214715&r1=214714&r2=214715&view=diff
==============================================================================
--- llvm/trunk/include/llvm/MC/MCSubtargetInfo.h (original)
+++ llvm/trunk/include/llvm/MC/MCSubtargetInfo.h Mon Aug 4 08:27:03 2014
@@ -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.
More information about the llvm-commits
mailing list