[compiler-rt] r275901 - [interception] Remove extra whitespace to appease linters (NFC)

Vedant Kumar via llvm-commits llvm-commits at lists.llvm.org
Mon Jul 18 13:07:28 PDT 2016


Author: vedantk
Date: Mon Jul 18 15:07:27 2016
New Revision: 275901

URL: http://llvm.org/viewvc/llvm-project?rev=275901&view=rev
Log:
[interception] Remove extra whitespace to appease linters (NFC)

Attempt to fix:

  http://lab.llvm.org:8011/builders/clang-s390x-linux/builds/7774

Modified:
    compiler-rt/trunk/lib/interception/interception_win.cc

Modified: compiler-rt/trunk/lib/interception/interception_win.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/interception/interception_win.cc?rev=275901&r1=275900&r2=275901&view=diff
==============================================================================
--- compiler-rt/trunk/lib/interception/interception_win.cc (original)
+++ compiler-rt/trunk/lib/interception/interception_win.cc Mon Jul 18 15:07:27 2016
@@ -452,7 +452,7 @@ static size_t GetInstructionSize(uptr ad
   }
 
 #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 ad
     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




More information about the llvm-commits mailing list