diff options
author | Daniel Sanders <daniel.sanders@imgtec.com> | 2014-08-04 13:27:03 +0000 |
---|---|---|
committer | Daniel Sanders <daniel.sanders@imgtec.com> | 2014-08-04 13:27:03 +0000 |
commit | a5cb453cd3fc08ec557363c1f368703acddd29ba (patch) | |
tree | 5d856fc2b9da10bbdb112b0774987c6ec2b1b642 | |
parent | c4cc7febb0fb4f1b2484bd6b406bc2177b85649e (diff) | |
download | bcm5719-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.h | 2 |
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. |