]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
Final nit
authorElliot Gorokhovsky <embg@fb.com>
Thu, 28 Apr 2022 18:49:45 +0000 (14:49 -0400)
committerElliot Gorokhovsky <embg@fb.com>
Thu, 28 Apr 2022 18:49:45 +0000 (14:49 -0400)
lib/compress/zstd_fast.c

index c6e9dd33aaa40350d23f3e0ef1b8d9afc0e1379a..959a392a48fffd3eb21edb819f8e0494fa423a04 100644 (file)
@@ -690,7 +690,9 @@ _start: /* Requires: ip0 */
         }   }
 
         {   /* load match for ip[0] */
-            U32 const mval = idx >= dictStartIndex ? MEM_read32(idxBase + idx) : MEM_read32(ip0) ^ 1; /* guaranteed not to match */
+            U32 const mval = idx >= dictStartIndex ?
+                    MEM_read32(idxBase + idx) :
+                    MEM_read32(ip0) ^ 1; /* guaranteed not to match */
 
             /* check match at ip[0] */
             if (MEM_read32(ip0) == mval) {
@@ -716,7 +718,9 @@ _start: /* Requires: ip0 */
         hashTable[hash0] = current0;
 
         {   /* load match for ip[0] */
-            U32 const mval = idx >= dictStartIndex ? MEM_read32(idxBase + idx) : MEM_read32(ip0) ^ 1; /* guaranteed not to match */
+            U32 const mval = idx >= dictStartIndex ?
+                    MEM_read32(idxBase + idx) :
+                    MEM_read32(ip0) ^ 1; /* guaranteed not to match */
 
             /* check match at ip[0] */
             if (MEM_read32(ip0) == mval) {