summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Sanders <daniel.sanders@imgtec.com>2014-08-04 13:27:03 +0000
committerDaniel Sanders <daniel.sanders@imgtec.com>2014-08-04 13:27:03 +0000
commita5cb453cd3fc08ec557363c1f368703acddd29ba (patch)
tree5d856fc2b9da10bbdb112b0774987c6ec2b1b642
parentc4cc7febb0fb4f1b2484bd6b406bc2177b85649e (diff)
downloadbcm5719-llvm-a5cb453cd3fc08ec557363c1f368703acddd29ba.tar.gz
bcm5719-llvm-a5cb453cd3fc08ec557363c1f368703acddd29ba.zip
Fixed accidental use of reserved identifier in r214709.
llvm-svn: 214715
-rw-r--r--llvm/include/llvm/MC/MCSubtargetInfo.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/MC/MCSubtargetInfo.h b/llvm/include/llvm/MC/MCSubtargetInfo.h
index d7076c0cfe3..97d5a7ac3a4 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.
OpenPOWER on IntegriCloud