Fixed accidental use of reserved identifier in r214709.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@214715 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Daniel Sanders 2014-08-04 13:27:03 +00:00
parent 3b7a193521
commit c8be3734a3

View 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.