| Index: source/rotate.cc | 
| diff --git a/source/rotate.cc b/source/rotate.cc | 
| index 01ea5c40744fbfb748f5ca2b9b24a8e2232a17a8..cb671f7a4bf4a21b0f7fabea4829cb0eddd8423f 100644 | 
| --- a/source/rotate.cc | 
| +++ b/source/rotate.cc | 
| @@ -141,6 +141,11 @@ void RotatePlane180(const uint8* src, int src_stride, | 
| MirrorRow = MirrorRow_DSPR2; | 
| } | 
| #endif | 
| +#if defined(HAS_MIRRORROW_MSA) | 
| +  if (TestCpuFlag(kCpuHasMSA)) { | 
| +    MirrorRow = MirrorRow_MSA; | 
| +  } | 
| +#endif | 
| #if defined(HAS_COPYROW_SSE2) | 
| if (TestCpuFlag(kCpuHasSSE2)) { | 
| CopyRow = IS_ALIGNED(width, 32) ? CopyRow_SSE2 : CopyRow_Any_SSE2; | 
|  |