|
#include <stdint.h>
|
|
#include "stencil_helper.h"
|
|
|
|
volatile extern int dummy_int;
|
|
volatile extern float dummy_float;
|
|
|
|
NOINLINE float auxsub_get_42(int n) {
|
|
return n * 5.0f + 21.0f;
|
|
}
|
|
|
|
NOINLINE float aux_get_42(float n) {
|
|
return auxsub_get_42(n * 3.0f + 42.0f);
|
|
} |