From a05a880d1e00c0a058ec762cd16ea83e56478aab Mon Sep 17 00:00:00 2001 From: Benjamin Kramer Date: Sat, 24 Aug 2019 15:11:41 +0000 Subject: [PATCH] Update tablegen test after r369847. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@369849 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/TableGen/generic-tables-instruction.td | 2 +- test/TableGen/generic-tables.td | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/TableGen/generic-tables-instruction.td b/test/TableGen/generic-tables-instruction.td index 1b79da6f734..a3bed650890 100644 --- a/test/TableGen/generic-tables-instruction.td +++ b/test/TableGen/generic-tables-instruction.td @@ -4,7 +4,7 @@ include "llvm/TableGen/SearchableTable.td" // CHECK-LABEL: GET_InstrTable_IMPL -// CHECK: const MyInstr InstrTable[] = { +// CHECK: constexpr MyInstr InstrTable[] = { // CHECK: { B, 0xA }, // CHECK: { C, 0x0 }, // CHECK: { A, 0x5 }, diff --git a/test/TableGen/generic-tables.td b/test/TableGen/generic-tables.td index 06e75c5067d..a63e25ee115 100644 --- a/test/TableGen/generic-tables.td +++ b/test/TableGen/generic-tables.td @@ -22,7 +22,7 @@ include "llvm/TableGen/SearchableTable.td" // CHECK: const AEntry *lookupATableByValues(uint8_t Val1, uint16_t Val2); // CHECK-LABEL: GET_ATable_IMPL -// CHECK: const AEntry ATable[] = { +// CHECK: constexpr AEntry ATable[] = { // CHECK: { "baz" // CHECK: { "foo" // CHECK: { "foobar" -- 2.40.0