Browse Source

Add comment

dds
PaulStoffregen 10 years ago
parent
commit
7eca7b573b
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      synth_dc.h

+ 1
- 0
synth_dc.h View File

} }
} }
#else #else
// compute (a - b) / c ... handling 32 bit interger overflow without slow 64 bit math
static inline int32_t substract_int32_then_divide_int32(int32_t a, int32_t b, int32_t c) __attribute__((always_inline, unused)); static inline int32_t substract_int32_then_divide_int32(int32_t a, int32_t b, int32_t c) __attribute__((always_inline, unused));
static inline int32_t substract_int32_then_divide_int32(int32_t a, int32_t b, int32_t c) static inline int32_t substract_int32_then_divide_int32(int32_t a, int32_t b, int32_t c)
{ {

Loading…
Cancel
Save