Skip to content

Commit 8f54ed2

Browse files
authored
Update CHECK lines in tests after 14e6f63 added new output causing the tests to fail on multiple bots. (#89689)
Update the check lines added in #87247 after 14e6f63 updated the output causing the tests to fail. This should hopefully unbreak the bots failing due to these two tests failing.
1 parent 365bddf commit 8f54ed2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

llvm/test/TableGen/directive1.td

+1-1
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ def TDL_DirA : Directive<"dira"> {
370370
// IMPL-EMPTY:
371371
// IMPL-NEXT: static_assert(sizeof(llvm::tdl::Directive) == sizeof(int));
372372
// IMPL-NEXT: {{.*}} static const llvm::tdl::Directive LeafConstructTable[][2] = {
373-
// IMPL-NEXT: llvm::tdl::TDLD_dira, static_cast<llvm::tdl::Directive>(0),
373+
// IMPL-NEXT: {llvm::tdl::TDLD_dira, static_cast<llvm::tdl::Directive>(0),},
374374
// IMPL-NEXT: };
375375
// IMPL-EMPTY:
376376
// IMPL-NEXT: {{.*}} static auto LeafConstructTableEndDirective = LeafConstructTable + 1;

llvm/test/TableGen/directive2.td

+1-1
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ def TDL_DirA : Directive<"dira"> {
301301
// IMPL-EMPTY:
302302
// IMPL-NEXT: static_assert(sizeof(llvm::tdl::Directive) == sizeof(int));
303303
// IMPL-NEXT: {{.*}} static const llvm::tdl::Directive LeafConstructTable[][2] = {
304-
// IMPL-NEXT: llvm::tdl::TDLD_dira, static_cast<llvm::tdl::Directive>(0),
304+
// IMPL-NEXT: {llvm::tdl::TDLD_dira, static_cast<llvm::tdl::Directive>(0),},
305305
// IMPL-NEXT: };
306306
// IMPL-EMPTY:
307307
// IMPL-NEXT: {{.*}} static auto LeafConstructTableEndDirective = LeafConstructTable + 1;

0 commit comments

Comments
 (0)