summaryrefslogtreecommitdiff
path: root/extra/boost/001-log_fix_dump_avx2.patch
blob: ae9cfd727bc975da93746d9a0e322b127f8e2efc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
Index: libs/log/src/dump_avx2.cpp
===================================================================
--- libs/log/src/dump_avx2.cpp	(revision 86614)
+++ libs/log/src/dump_avx2.cpp	(working copy)
@@ -205,7 +205,7 @@
             __m256i mm_input = _mm256_load_si256(reinterpret_cast< const __m256i* >(p));
             __m256i mm_output1, mm_output2, mm_output3;
             dump_pack(mm_char_10_to_a, mm_input, mm_output1, mm_output2, mm_output3);
-            store_characters_x3(mm_output1, mm_output2, mm_output3, buf);
+            store_characters_x3(mm_output1, mm_output2, mm_output3, b);
         }
 
         _mm256_zeroall(); // need to zero all ymm registers to avoid register spills/restores the compler generates around the function call