diff options
author | Bjorn Pettersson <bjorn.a.pettersson@ericsson.com> | 2019-08-25 10:47:30 +0000 |
---|---|---|
committer | Bjorn Pettersson <bjorn.a.pettersson@ericsson.com> | 2019-08-25 10:47:30 +0000 |
commit | 6bd3a9eaa6c8d920b6a8663d920018cf538daab8 (patch) | |
tree | 7b53100dab251bca0b47cd143b82fbb3c412301c /llvm/utils/TableGen/FixedLenDecoderEmitter.cpp | |
parent | aa71c977ba9828496270f53edd66665c8244f679 (diff) | |
download | bcm5719-llvm-6bd3a9eaa6c8d920b6a8663d920018cf538daab8.tar.gz bcm5719-llvm-6bd3a9eaa6c8d920b6a8663d920018cf538daab8.zip |
[TableGen] Correct comments for end of namespace. NFC
Summary:
Update end-of-namespace comments generated by
tablegen emitters to fulfill the rules setup by
clang-tidy's llvm-namespace-comment checker.
Fixed a few end-of-namespace comments in the
tablegen source code as well.
Reviewers: craig.topper
Reviewed By: craig.topper
Subscribers: craig.topper, stoklund, dschuff, sbc100, jgravelle-google, aheejin, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D66396
llvm-svn: 369865
Diffstat (limited to 'llvm/utils/TableGen/FixedLenDecoderEmitter.cpp')
-rw-r--r-- | llvm/utils/TableGen/FixedLenDecoderEmitter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/utils/TableGen/FixedLenDecoderEmitter.cpp b/llvm/utils/TableGen/FixedLenDecoderEmitter.cpp index dc9dfa8ff5e..01f4115aa1d 100644 --- a/llvm/utils/TableGen/FixedLenDecoderEmitter.cpp +++ b/llvm/utils/TableGen/FixedLenDecoderEmitter.cpp @@ -2465,7 +2465,7 @@ void FixedLenDecoderEmitter::run(raw_ostream &o) { // Emit the main entry point for the decoder, decodeInstruction(). emitDecodeInstruction(OS); - OS << "\n} // End llvm namespace\n"; + OS << "\n} // end namespace llvm\n"; } namespace llvm { |