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
This commit is contained in:
Jakub Staszak 2012-12-12 21:10:56 +00:00
parent 94993e37c6
commit 6b0f123b89

View File

@ -9,6 +9,6 @@ class C<list<bits<8>> L> {
def c0 : C<[0b0101, 0b1010]>; def c0 : C<[0b0101, 0b1010]>;
// CHECK: def c0 // CHECK: def c0
// CHECk-NEXT: bits<2> V0 = { 0, 1 }; // CHECK-NEXT: bits<2> V0 = { 0, 1 };
// CHECk-NEXT: bits<2> V1 = { 1, 0 }; // CHECK-NEXT: bits<2> V1 = { 1, 0 };
// CHECk-NEXT: string V2 = "Odd"; // CHECK-NEXT: string V2 = "Odd";