From be30d1dd9b4c17a0df0a862be95974421bea4c05 Mon Sep 17 00:00:00 2001 From: Bad Diode Date: Sat, 29 May 2021 09:09:25 +0200 Subject: Change release optimization mode to -O3 --- src/common.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/common.h') diff --git a/src/common.h b/src/common.h index 12114d7..0d6c89f 100644 --- a/src/common.h +++ b/src/common.h @@ -260,6 +260,11 @@ u32 profile_stop(void) { return (TIMER_DATA_3 << 16) | TIMER_DATA_2; } +static inline +u32 profile_measure(void) { + return (TIMER_DATA_3 << 16) | TIMER_DATA_2; +} + // // Input handling. // -- cgit v1.2.1