[lld] r204224 - Remove extra semicolon for -Wpedantic.
Simon Atanasyan
simon at atanasyan.com
Wed Mar 19 04:06:07 PDT 2014
Author: atanasyan
Date: Wed Mar 19 06:06:07 2014
New Revision: 204224
URL: http://llvm.org/viewvc/llvm-project?rev=204224&view=rev
Log:
Remove extra semicolon for -Wpedantic.
Modified:
lld/trunk/unittests/DriverTests/WinLinkDriverTest.cpp
Modified: lld/trunk/unittests/DriverTests/WinLinkDriverTest.cpp
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/unittests/DriverTests/WinLinkDriverTest.cpp?rev=204224&r1=204223&r2=204224&view=diff
==============================================================================
--- lld/trunk/unittests/DriverTests/WinLinkDriverTest.cpp (original)
+++ lld/trunk/unittests/DriverTests/WinLinkDriverTest.cpp Wed Mar 19 06:06:07 2014
@@ -347,13 +347,13 @@ const uint32_t write = llvm::COFF::IMAGE
EXPECT_EQ(expect, _context.getSectionAttributes(".text", execute | read)); \
}
-TEST_SECTION(SectionD, "d", execute | read | discardable);
-TEST_SECTION(SectionE, "e", execute);
-TEST_SECTION(SectionK, "k", execute | read | not_cached);
-TEST_SECTION(SectionP, "p", execute | read | not_paged);
-TEST_SECTION(SectionR, "r", read);
-TEST_SECTION(SectionS, "s", execute | read | shared);
-TEST_SECTION(SectionW, "w", write);
+TEST_SECTION(SectionD, "d", execute | read | discardable)
+TEST_SECTION(SectionE, "e", execute)
+TEST_SECTION(SectionK, "k", execute | read | not_cached)
+TEST_SECTION(SectionP, "p", execute | read | not_paged)
+TEST_SECTION(SectionR, "r", read)
+TEST_SECTION(SectionS, "s", execute | read | shared)
+TEST_SECTION(SectionW, "w", write)
#undef TEST_SECTION
More information about the llvm-commits
mailing list