summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--runner.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/runner.c b/runner.c
index 7220ce3..5dd494d 100644
--- a/runner.c
+++ b/runner.c
@@ -239,7 +239,9 @@ int main() {
do {
if (USE_PRE_LCS) {
+ TIMINGS_START();
n = lcs_upper_bound((uint32_t*)input_raw, (uint32_t*)global_md5.abcd);
+ TIMINGS_END("lcs_upper_bound");
PEDANTIC_TEST_GTE(n, pedantic_n);
if (n < MSF)
break;