Skip to content

Commit

Permalink
[FileCheckTest] Supress new warning
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbolvansky committed Aug 8, 2020
1 parent cc15380 commit 4cc9142
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions llvm/unittests/Support/FileCheckTest.cpp
Expand Up @@ -796,10 +796,10 @@ TEST_F(FileCheckTest, Binop) {
std::move(Binop2));
ImplicitFormat = OuterBinop->getImplicitFormat(SM);
expectSameErrors<ErrorDiagnostic>(
{"implicit format conflict between 'FOO' (%u) and 'BAZ' (%x), "
"need an explicit format specifier",
"implicit format conflict between 'FOO' (%u) and 'QUUX' (%x), "
"need an explicit format specifier"},
{("implicit format conflict between 'FOO' (%u) and 'BAZ' (%x), need an "
"explicit format specifier"),
("implicit format conflict between 'FOO' (%u) and 'QUUX' (%x), need an "
"explicit format specifier")},
ImplicitFormat.takeError());
}

Expand Down

0 comments on commit 4cc9142

Please sign in to comment.