[compiler-rt] bdeb15c - tsan: remove non-existent MemoryAccessRangeStep

Dmitry Vyukov via llvm-commits llvm-commits at lists.llvm.org
Wed Aug 4 09:04:10 PDT 2021


Author: Dmitry Vyukov
Date: 2021-08-04T18:04:06+02:00
New Revision: bdeb15c34eac9884f48a324004708e66ff76557b

URL: https://github.com/llvm/llvm-project/commit/bdeb15c34eac9884f48a324004708e66ff76557b
DIFF: https://github.com/llvm/llvm-project/commit/bdeb15c34eac9884f48a324004708e66ff76557b.diff

LOG: tsan: remove non-existent MemoryAccessRangeStep

Probably was used for Go at some point...

Depends on D107466.

Reviewed By: melver

Differential Revision: https://reviews.llvm.org/D107467

Added: 
    

Modified: 
    compiler-rt/lib/tsan/rtl/tsan_rtl.h

Removed: 
    


################################################################################
diff  --git a/compiler-rt/lib/tsan/rtl/tsan_rtl.h b/compiler-rt/lib/tsan/rtl/tsan_rtl.h
index 62f7ea370a9f..1f86b92ac1a0 100644
--- a/compiler-rt/lib/tsan/rtl/tsan_rtl.h
+++ b/compiler-rt/lib/tsan/rtl/tsan_rtl.h
@@ -699,8 +699,6 @@ void MemoryAccessImpl(ThreadState *thr, uptr addr,
     u64 *shadow_mem, Shadow cur);
 void MemoryAccessRange(ThreadState *thr, uptr pc, uptr addr,
     uptr size, bool is_write);
-void MemoryAccessRangeStep(ThreadState *thr, uptr pc, uptr addr,
-    uptr size, uptr step, bool is_write);
 void UnalignedMemoryAccess(ThreadState *thr, uptr pc, uptr addr, uptr size,
                            AccessType typ);
 


        


More information about the llvm-commits mailing list