From 6259db89ce078b7c55700246538704a55cad7e49 Mon Sep 17 00:00:00 2001 From: Nicolas Date: Thu, 30 Oct 2025 14:02:34 +0100 Subject: [PATCH] dummy variables fpr stencils changed from volatile to extern --- stencils/aux_functions.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stencils/aux_functions.c b/stencils/aux_functions.c index 3301687..93823e2 100644 --- a/stencils/aux_functions.c +++ b/stencils/aux_functions.c @@ -2,8 +2,8 @@ //double (*math_pow)(double, double); -volatile int dummy_int = 1337; -volatile float dummy_float = 1337; +extern int dummy_int; +extern float dummy_float; __attribute__((noinline)) int floor_div(float arg1, float arg2) { float x = arg1 / arg2;