From: Daniel Sanders Date: Mon, 4 Aug 2014 13:27:03 +0000 (+0000) Subject: Fixed accidental use of reserved identifier in r214709. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a5cb453cd3fc08ec557363c1f368703acddd29ba;p=platform%2Fupstream%2Fllvm.git Fixed accidental use of reserved identifier in r214709. llvm-svn: 214715 --- diff --git a/llvm/include/llvm/MC/MCSubtargetInfo.h b/llvm/include/llvm/MC/MCSubtargetInfo.h index d7076c0..97d5a7a 100644 --- a/llvm/include/llvm/MC/MCSubtargetInfo.h +++ b/llvm/include/llvm/MC/MCSubtargetInfo.h @@ -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.