Skip to content

Commit d888436

Browse files
committed
Fix printf in test cases
1 parent 2116d67 commit d888436

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

clang/tools/sotoc/test/arrays/static_variable_length_array_2d_sw.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ int main(){
1717
}
1818

1919
for (j = 0; j < size; j+=64) {
20-
printf("%.2f %.2f",A[0][j],A[1][j]);
20+
printf("%.2f %.2f ",A[0][j],A[1][j]);
2121
}
2222
return 0;
2323
}

clang/tools/sotoc/test/arrays/static_variable_length_array_3d_sw.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ int main(){
2020
}
2121

2222
for (j = 0; j < size; j+=64) {
23-
printf("%.2f %.2f",A[0][j][3],A[1][j][2]);
23+
printf("%.2f %.2f ",A[0][j][3],A[1][j][2]);
2424
}
2525
return 0;
2626
}

0 commit comments

Comments
 (0)