Files
wasmtime/cranelift/docs/example.c
Jakob Stoklund Olesen 75544db19a Update language reference.
Add a glossary and explain the overall shape of a Cretonne function.
2016-01-21 14:25:16 -08:00

9 lines
160 B
C

float
average(const float *array, size_t count)
{
double sum = 0;
for (size_t i = 0; i < count; i++)
sum += array[i];
return sum / count;
}