diff options
| author | Vedant Kumar <vsk@apple.com> | 2016-07-18 20:07:27 +0000 |
|---|---|---|
| committer | Vedant Kumar <vsk@apple.com> | 2016-07-18 20:07:27 +0000 |
| commit | 55ecc100b03fd7fec61efe7a8a9002e1e70e5040 (patch) | |
| tree | 28283f0de0f9ec9ea2c48d77e7412ab01b925492 | |
| parent | 8a2bf3099fcb3d27b549a4d81173345fb7bc3249 (diff) | |
| download | bcm5719-llvm-55ecc100b03fd7fec61efe7a8a9002e1e70e5040.tar.gz bcm5719-llvm-55ecc100b03fd7fec61efe7a8a9002e1e70e5040.zip | |
[interception] Remove extra whitespace to appease linters (NFC)
Attempt to fix:
http://lab.llvm.org:8011/builders/clang-s390x-linux/builds/7774
llvm-svn: 275901
| -rw-r--r-- | compiler-rt/lib/interception/interception_win.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler-rt/lib/interception/interception_win.cc b/compiler-rt/lib/interception/interception_win.cc index 8d6d3b00e16..86bea3c51ba 100644 --- a/compiler-rt/lib/interception/interception_win.cc +++ b/compiler-rt/lib/interception/interception_win.cc @@ -452,7 +452,7 @@ static size_t GetInstructionSize(uptr address) { } #if SANITIZER_WINDOWS64 - switch (*(u8*)address) { + switch (*(u8*)address) { case 0xA1: // A1 XX XX XX XX XX XX XX XX : // movabs eax, dword ptr ds:[XXXXXXXX] return 8; @@ -506,7 +506,7 @@ static size_t GetInstructionSize(uptr address) { case 0x25ff48: // 48 ff 25 XX XX XX XX : // rex.W jmp QWORD PTR [rip + XXXXXXXX] // Instructions having offset relative to 'rip' cannot be copied. - return 0; + return 0; case 0x2444c7: // C7 44 24 XX YY YY YY YY // mov dword ptr [rsp + XX], YYYYYYYY |

