Skip to content

Commit

Permalink
tests/i3s: no-args function example
Browse files Browse the repository at this point in the history
Signed-off-by: Vasily Efimov <[email protected]>
  • Loading branch information
laerreal committed Oct 23, 2024
1 parent 2b9f642 commit 9b618bf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/i3s/i3s.c
Original file line number Diff line number Diff line change
Expand Up @@ -634,7 +634,7 @@ int for_test(void) {

int helper(short tcg a1, tcg a2) {}

int func_call_test(void) {
int func_call_test() {
int a = 5;
tcg b = 6;

Expand Down
2 changes: 1 addition & 1 deletion tests/i3s/i3s_debug_reference_standards.c
Original file line number Diff line number Diff line change
Expand Up @@ -1368,7 +1368,7 @@ int for_test(void) {

int helper(TCGv_i32 a1, TCGv a2) {}

int func_call_test(void) {
int func_call_test() {
int a = 5;
TCGv b = tcg_temp_local_new();
tcg_gen_movi_tl(b, 6);
Expand Down
2 changes: 1 addition & 1 deletion tests/i3s/i3s_reference_standards.c
Original file line number Diff line number Diff line change
Expand Up @@ -1115,7 +1115,7 @@ int for_test(void) {

int helper(TCGv_i32 a1, TCGv a2) {}

int func_call_test(void) {
int func_call_test() {
int a = 5;
TCGv b = tcg_temp_local_new();
tcg_gen_movi_tl(b, 6);
Expand Down

0 comments on commit 9b618bf

Please sign in to comment.