From c8be3734a35619cb559aeea9118776451e7897cc Mon Sep 17 00:00:00 2001 From: Daniel Sanders Date: Mon, 4 Aug 2014 13:27:03 +0000 Subject: [PATCH] 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 --- include/llvm/MC/MCSubtargetInfo.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/MC/MCSubtargetInfo.h b/include/llvm/MC/MCSubtargetInfo.h index d7076c0cfe3..97d5a7ac3a4 100644 --- a/include/llvm/MC/MCSubtargetInfo.h +++ b/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. -- 2.34.1