aboutsummaryrefslogtreecommitdiff
path: root/tests/include/test.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/include/test.c')
-rw-r--r--tests/include/test.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/include/test.c b/tests/include/test.c
index d63c974..3a59ffc 100644
--- a/tests/include/test.c
+++ b/tests/include/test.c
@@ -48,4 +48,10 @@ unsigned char test_call_param6(UNION2 param1) {
int test_call_param7(union UNION1 param1) {
return param1.field1;
+}
+
+float test_call_param8(int *param1) {
+ *param1 = 5 * *param1;
+
+ return 1.0 * *param1;
} \ No newline at end of file