From: Jakub Staszak Date: Wed, 12 Dec 2012 21:10:56 +0000 (+0000) Subject: Fix typo, which prevent test from being check. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=6b0f123b8970e4ca25fbc278992e8ef95daf217f;p=oota-llvm.git Fix typo, which prevent test from being check. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@170025 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/TableGen/list-element-bitref.td b/test/TableGen/list-element-bitref.td index 02607bdcd5e..7db3d31167f 100644 --- a/test/TableGen/list-element-bitref.td +++ b/test/TableGen/list-element-bitref.td @@ -9,6 +9,6 @@ class C> L> { def c0 : C<[0b0101, 0b1010]>; // CHECK: def c0 -// CHECk-NEXT: bits<2> V0 = { 0, 1 }; -// CHECk-NEXT: bits<2> V1 = { 1, 0 }; -// CHECk-NEXT: string V2 = "Odd"; +// CHECK-NEXT: bits<2> V0 = { 0, 1 }; +// CHECK-NEXT: bits<2> V1 = { 1, 0 }; +// CHECK-NEXT: string V2 = "Odd";