mirror of https://github.com/Nonannet/copapy.git
dummy variables fpr stencils changed from volatile to extern
This commit is contained in:
parent
0ff43e62ab
commit
6259db89ce
|
|
@ -2,8 +2,8 @@
|
||||||
|
|
||||||
//double (*math_pow)(double, double);
|
//double (*math_pow)(double, double);
|
||||||
|
|
||||||
volatile int dummy_int = 1337;
|
extern int dummy_int;
|
||||||
volatile float dummy_float = 1337;
|
extern float dummy_float;
|
||||||
|
|
||||||
__attribute__((noinline)) int floor_div(float arg1, float arg2) {
|
__attribute__((noinline)) int floor_div(float arg1, float arg2) {
|
||||||
float x = arg1 / arg2;
|
float x = arg1 / arg2;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue