File tree Expand file tree Collapse file tree
ruby/ext/google/protobuf_c Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -873,17 +873,6 @@ UPB_INLINE void UPB_PRIVATE(upb_Xsan_Init)(upb_Xsan *xsan) {
873873#endif
874874}
875875
876- UPB_INLINE void UPB_PRIVATE(upb_Xsan_MarkInitialized)(void* addr, size_t size) {
877- #if UPB_HAS_FEATURE(memory_sanitizer)
878- if (size) {
879- __msan_unpoison(addr, size);
880- }
881- #else
882- UPB_UNUSED(addr);
883- UPB_UNUSED(size);
884- #endif
885- }
886-
887876// Marks the given region as poisoned, meaning that it is not accessible until
888877// it is unpoisoned.
889878UPB_INLINE void UPB_PRIVATE(upb_Xsan_PoisonRegion)(const void *addr,
Original file line number Diff line number Diff line change @@ -875,17 +875,6 @@ UPB_INLINE void UPB_PRIVATE(upb_Xsan_Init)(upb_Xsan *xsan) {
875875#endif
876876}
877877
878- UPB_INLINE void UPB_PRIVATE(upb_Xsan_MarkInitialized)(void* addr, size_t size) {
879- #if UPB_HAS_FEATURE(memory_sanitizer)
880- if (size) {
881- __msan_unpoison(addr, size);
882- }
883- #else
884- UPB_UNUSED(addr);
885- UPB_UNUSED(size);
886- #endif
887- }
888-
889878// Marks the given region as poisoned, meaning that it is not accessible until
890879// it is unpoisoned.
891880UPB_INLINE void UPB_PRIVATE(upb_Xsan_PoisonRegion)(const void *addr,
You can’t perform that action at this time.
0 commit comments