Skip to content
This repository was archived by the owner on Mar 28, 2023. It is now read-only.

Commit 19f38c7

Browse files
Fixed noinline_args_size tests
1 parent 56c3b55 commit 19f38c7

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

SYCL/ESIMD/noinline_args_size/Inputs/noinline_args_size_common.hpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,10 @@ int main(void) {
7575
auto vc = add<simd<a_data_t, SIZE>, simd<b_data_t, SIZE>,
7676
simd<c_data_t, SIZE>>(va, vb);
7777

78-
for (int j = 0; j < ROWS; j++)
79-
simd<c_data_t, VL> vals =
80-
vc.select<VL, 1>(j * VL) vals.copy_to(C + j * VL);
78+
for (int j = 0; j < ROWS; j++) {
79+
simd<c_data_t, VL> vals = vc.select<VL, 1>(j * VL);
80+
vals.copy_to(C + j * VL);
81+
}
8182
});
8283
});
8384

0 commit comments

Comments
 (0)