diff options
| -rw-r--r-- | compiler-rt/lib/interception/interception_win.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler-rt/lib/interception/interception_win.cc b/compiler-rt/lib/interception/interception_win.cc index bd435f16e4e..0511ed9353d 100644 --- a/compiler-rt/lib/interception/interception_win.cc +++ b/compiler-rt/lib/interception/interception_win.cc @@ -97,6 +97,7 @@ static size_t RoundUpToInstrBoundary(size_t size, char *code) { continue; case 0x458B: // 8B 45 XX = mov eax, dword ptr [ebp+XXh] case 0x5D8B: // 8B 5D XX = mov ebx, dword ptr [ebp+XXh] + case 0x7D8B: // 8B 7D XX = mov edi, dword ptr [ebp+XXh] case 0xEC83: // 83 EC XX = sub esp, XX case 0x75FF: // FF 75 XX = push dword ptr [ebp+XXh] cursor += 3; |

