Index: benchmark/function.c
===================================================================
--- benchmark/function.c	(revision 90152a4860529aff7214be01cd22abd37012cd19)
+++ benchmark/function.c	(revision 90152a4860529aff7214be01cd22abd37012cd19)
@@ -0,0 +1,18 @@
+#include <stdio.h>
+
+#include "bench.h"
+
+void __attribute__((noinline)) do_call() {
+	asm volatile("" ::: "memory");
+}
+
+int main(int argc, char* argv[]) {
+	BENCH(
+		for (size_t i = 0; i < n; i++) {
+			do_call();
+		},
+		result
+	)
+
+	printf("%llu\n", result);
+}
