[llvm] r265227 - Document end of anonymous namespaces, NFC
Duncan P. N. Exon Smith via llvm-commits
llvm-commits at lists.llvm.org
Sat Apr 2 09:45:51 PDT 2016
Author: dexonsmith
Date: Sat Apr 2 11:45:51 2016
New Revision: 265227
URL: http://llvm.org/viewvc/llvm-project?rev=265227&view=rev
Log:
Document end of anonymous namespaces, NFC
Prevent clang-format from deleting the preceding newline.
Modified:
llvm/trunk/unittests/IR/ValueMapTest.cpp
llvm/trunk/unittests/Transforms/Utils/ValueMapperTest.cpp
Modified: llvm/trunk/unittests/IR/ValueMapTest.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/unittests/IR/ValueMapTest.cpp?rev=265227&r1=265226&r2=265227&view=diff
==============================================================================
--- llvm/trunk/unittests/IR/ValueMapTest.cpp (original)
+++ llvm/trunk/unittests/IR/ValueMapTest.cpp Sat Apr 2 11:45:51 2016
@@ -292,4 +292,4 @@ TYPED_TEST(ValueMapTest, SurvivesModific
EXPECT_EQ(0u, VM.count(this->AddV.get()));
}
-}
+} // end namespace
Modified: llvm/trunk/unittests/Transforms/Utils/ValueMapperTest.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/unittests/Transforms/Utils/ValueMapperTest.cpp?rev=265227&r1=265226&r2=265227&view=diff
==============================================================================
--- llvm/trunk/unittests/Transforms/Utils/ValueMapperTest.cpp (original)
+++ llvm/trunk/unittests/Transforms/Utils/ValueMapperTest.cpp Sat Apr 2 11:45:51 2016
@@ -55,4 +55,4 @@ TEST(ValueMapperTest, MapMetadataDistinc
EXPECT_EQ(New, D->getOperand(0));
}
-}
+} // end namespace
More information about the llvm-commits
mailing list