diff options
author | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2016-04-02 16:45:51 +0000 |
---|---|---|
committer | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2016-04-02 16:45:51 +0000 |
commit | ddbb1cd45a51d24642788599d2e3aafaed9bba0f (patch) | |
tree | ce8e04eae08022008d9a2faddb23d4a6ad8d2b43 | |
parent | 520f8542fffc9bc1dae1f866782db867da2e6c39 (diff) | |
download | bcm5719-llvm-ddbb1cd45a51d24642788599d2e3aafaed9bba0f.tar.gz bcm5719-llvm-ddbb1cd45a51d24642788599d2e3aafaed9bba0f.zip |
Document end of anonymous namespaces, NFC
Prevent clang-format from deleting the preceding newline.
llvm-svn: 265227
-rw-r--r-- | llvm/unittests/IR/ValueMapTest.cpp | 2 | ||||
-rw-r--r-- | llvm/unittests/Transforms/Utils/ValueMapperTest.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/llvm/unittests/IR/ValueMapTest.cpp b/llvm/unittests/IR/ValueMapTest.cpp index 1431a8d87de..71a1fd1c748 100644 --- a/llvm/unittests/IR/ValueMapTest.cpp +++ b/llvm/unittests/IR/ValueMapTest.cpp @@ -292,4 +292,4 @@ TYPED_TEST(ValueMapTest, SurvivesModificationByConfig) { EXPECT_EQ(0u, VM.count(this->AddV.get())); } -} +} // end namespace diff --git a/llvm/unittests/Transforms/Utils/ValueMapperTest.cpp b/llvm/unittests/Transforms/Utils/ValueMapperTest.cpp index 9dbe4dbc56d..6141c416f9a 100644 --- a/llvm/unittests/Transforms/Utils/ValueMapperTest.cpp +++ b/llvm/unittests/Transforms/Utils/ValueMapperTest.cpp @@ -55,4 +55,4 @@ TEST(ValueMapperTest, MapMetadataDistinctOperands) { EXPECT_EQ(New, D->getOperand(0)); } -} +} // end namespace |