summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/eminline.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/osd/eminline.h')
-rw-r--r--src/osd/eminline.h15
1 files changed, 1 insertions, 14 deletions
diff --git a/src/osd/eminline.h b/src/osd/eminline.h
index 685025416b9..6d54a21a45f 100644
--- a/src/osd/eminline.h
+++ b/src/osd/eminline.h
@@ -51,19 +51,6 @@
***************************************************************************/
/*-------------------------------------------------
- mul_16x16 - perform a signed 16 bit x 16 bit
- multiply and return the full 32 bit result
--------------------------------------------------*/
-
-#ifndef mul_16x16
-constexpr int32_t mul_16x16(int16_t a, int16_t b)
-{
- return int32_t(a) * int32_t(b);
-}
-#endif
-
-
-/*-------------------------------------------------
mul_32x32 - perform a signed 32 bit x 32 bit
multiply and return the full 64 bit result
-------------------------------------------------*/
@@ -567,7 +554,7 @@ constexpr uint64_t rotr_64(uint64_t val, int shift)
-------------------------------------------------*/
#ifndef get_profile_ticks
-inline int64_t get_profile_ticks()
+inline int64_t get_profile_ticks() noexcept
{
return osd_ticks();
}