[PATCH] D129237: [scudo] Pass MapPlatformData in more calls

Vitaly Buka via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Jul 6 21:33:16 PDT 2022


vitalybuka added inline comments.


================
Comment at: compiler-rt/lib/scudo/standalone/release.h:141
   uptr *Buffer;
+  MapPlatformData Data = {};
 
----------------
Data -> MapData


================
Comment at: compiler-rt/lib/scudo/standalone/vector.h:94
 
   T *Data = nullptr;
+  MapPlatformData PlatformData = {};
----------------
PlatformData -> MapData


================
Comment at: compiler-rt/lib/scudo/standalone/vector.h:95
   T *Data = nullptr;
+  MapPlatformData PlatformData = {};
   T LocalData[256 / sizeof(T)] = {};
----------------
Can you make it the last member as well?


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D129237/new/

https://reviews.llvm.org/D129237



More information about the llvm-commits mailing list