| Index: webrtc/modules/audio_coding/codecs/isac/fix/source/lattice.c
|
| diff --git a/webrtc/modules/audio_coding/codecs/isac/fix/source/lattice.c b/webrtc/modules/audio_coding/codecs/isac/fix/source/lattice.c
|
| index 2b92acb64a3d7dd268574abb57a24850b60cb3d1..b69a885f34de9eaa762a69f11d84cc8bec637376 100644
|
| --- a/webrtc/modules/audio_coding/codecs/isac/fix/source/lattice.c
|
| +++ b/webrtc/modules/audio_coding/codecs/isac/fix/source/lattice.c
|
| @@ -209,8 +209,8 @@ void WebRtcIsacfix_NormLatticeFilterMa(size_t orderCoef,
|
| // Left shift of an int32_t that's allowed to overflow. (It's still undefined
|
| // behavior, so not a good idea; this just makes UBSan ignore the violation, so
|
| // that our old code can continue to do what it's always been doing.)
|
| -static inline int32_t OverflowingLShiftS32(int32_t x, int shift)
|
| - RTC_NO_SANITIZE("shift") {
|
| +static inline int32_t RTC_NO_SANITIZE("shift")
|
| + OverflowingLShiftS32(int32_t x, int shift) {
|
| return x << shift;
|
| }
|
|
|
|
|