Skip to content
This repository was archived by the owner on May 21, 2019. It is now read-only.

Commit f609165

Browse files
committed
[interception] Remove extra whitespace to appease linters (NFC)
Attempt to fix: http://lab.llvm.org:8011/builders/clang-s390x-linux/builds/7774 git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@275901 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent 30e6ecf commit f609165

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/interception/interception_win.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@ static size_t GetInstructionSize(uptr address) {
452452
}
453453

454454
#if SANITIZER_WINDOWS64
455-
switch (*(u8*)address) {
455+
switch (*(u8*)address) {
456456
case 0xA1: // A1 XX XX XX XX XX XX XX XX :
457457
// movabs eax, dword ptr ds:[XXXXXXXX]
458458
return 8;
@@ -506,7 +506,7 @@ static size_t GetInstructionSize(uptr address) {
506506
case 0x25ff48: // 48 ff 25 XX XX XX XX :
507507
// rex.W jmp QWORD PTR [rip + XXXXXXXX]
508508
// Instructions having offset relative to 'rip' cannot be copied.
509-
return 0;
509+
return 0;
510510

511511
case 0x2444c7: // C7 44 24 XX YY YY YY YY
512512
// mov dword ptr [rsp + XX], YYYYYYYY

0 commit comments

Comments
 (0)