diff options
author | Simon Atanasyan <simon@atanasyan.com> | 2014-03-19 11:06:07 +0000 |
---|---|---|
committer | Simon Atanasyan <simon@atanasyan.com> | 2014-03-19 11:06:07 +0000 |
commit | e7e8b26f9381f32bc3fca736390ffe7fd6f0f0f2 (patch) | |
tree | 98c6b872c1fb38f33532f016e488b068526e0cad | |
parent | 0edb4bbb4b78e8a3f880e004175fd349f530321e (diff) | |
download | bcm5719-llvm-e7e8b26f9381f32bc3fca736390ffe7fd6f0f0f2.tar.gz bcm5719-llvm-e7e8b26f9381f32bc3fca736390ffe7fd6f0f0f2.zip |
Remove extra semicolon for -Wpedantic.
llvm-svn: 204224
-rw-r--r-- | lld/unittests/DriverTests/WinLinkDriverTest.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lld/unittests/DriverTests/WinLinkDriverTest.cpp b/lld/unittests/DriverTests/WinLinkDriverTest.cpp index 0313a6ceff8..4de37f6e894 100644 --- a/lld/unittests/DriverTests/WinLinkDriverTest.cpp +++ b/lld/unittests/DriverTests/WinLinkDriverTest.cpp @@ -347,13 +347,13 @@ const uint32_t write = llvm::COFF::IMAGE_SCN_MEM_WRITE; 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 |