[PATCH] D111097: [DFSan] Remove -dfsan-args-abi support in favor of TLS.

Peter Collingbourne via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Oct 8 10:53:52 PDT 2021


pcc accepted this revision.
pcc added a comment.
This revision is now accepted and ready to land.

LGTM



================
Comment at: llvm/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp:1430
       // WrapperKind is done in the second pass below.
-      FunctionType *NewFT =
-          getInstrumentedABI() == IA_Args ? getArgsFunctionType(FT) : FT;
+      FunctionType *NewFT = FT;
 
----------------
Remove this line and use FT below.


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D111097



More information about the llvm-commits mailing list