diff options
author | Abseil Team <absl-team@google.com> | 2024-03-12 06:18:56 -0700 |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2024-03-12 06:19:45 -0700 |
commit | e20285c6529eafba57521153790bcb9a4d4244c3 (patch) | |
tree | efa50670b36199d9f259f8f329ae6a69ce54e533 /absl/crc | |
parent | b9690836ac18bb85b9ae44db3ca328131281a848 (diff) |
Delete a stray comment
PiperOrigin-RevId: 615017130
Change-Id: I73277de8ece31d6a35b47dbdb205b473324b74a2
Diffstat (limited to 'absl/crc')
-rw-r--r-- | absl/crc/internal/crc_memcpy_x86_arm_combined.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/absl/crc/internal/crc_memcpy_x86_arm_combined.cc b/absl/crc/internal/crc_memcpy_x86_arm_combined.cc index 968e9ae3..5a8b4ec7 100644 --- a/absl/crc/internal/crc_memcpy_x86_arm_combined.cc +++ b/absl/crc/internal/crc_memcpy_x86_arm_combined.cc @@ -196,7 +196,6 @@ crc32c_t AcceleratedCrcMemcpyEngine<vec_regions, int_regions>::Compute( // Start work on the CRC: undo the XOR from the previous calculation or set up // the initial value of the CRC. - // initial_crc ^= kCrcDataXor; initial_crc = crc32c_t{static_cast<uint32_t>(initial_crc) ^ kCrcDataXor}; // Do an initial alignment copy, so we can use aligned store instructions to |