Skip to content

Commit

Permalink
test: Update irs-to-llvm tests to reflect switch in type converter.
Browse files Browse the repository at this point in the history
  • Loading branch information
lkorenc authored and xlauko committed Oct 24, 2023
1 parent f3ad014 commit ae9ed16
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/vast/Conversion/Common/IRsToLLVM/array-a.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

void count()
{
// CHECK: llvm.store [[V4:%[0-9]+]], [[V10:%[0-9]+]] : !llvm.ptr<i32>
// CHECK: llvm.store [[V4:%[0-9]+]], [[V10:%[0-9]+]] : !llvm.ptr<array<3 x i32>>
int x[3] = { 112, 212, 4121 };
}
2 changes: 1 addition & 1 deletion test/vast/Conversion/Common/IRsToLLVM/array-b.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

void count()
{
// CHECK: llvm.store [[V4:%[0-9]+]], [[V10:%[0-9]+]] : !llvm.ptr<f32>
// CHECK: llvm.store [[V4:%[0-9]+]], [[V10:%[0-9]+]] : !llvm.ptr<array<3 x f32>>
float x[3] = { 112.0f, 212.0f, 4121.0f };
}

0 comments on commit ae9ed16

Please sign in to comment.