This is an archive of the discontinued LLVM Phabricator instance.

Remove unused private fields
ClosedPublic

Authored by GMNGeoffrey on Nov 19 2020, 1:36 PM.

Details

Summary

Unused since https://reviews.llvm.org/D91762 and triggering
-Wunused-private-field

llvm/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp:365:13: error: private field 'GetArgTLS' is not used [-Werror,-Wunused-private-field]
  Constant *GetArgTLS;
            ^
llvm/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp:366:13: error: private field 'GetRetvalTLS' is not used [-Werror,-Wunused-private-field]
  Constant *GetRetvalTLS;

Diff Detail

Event Timeline

GMNGeoffrey created this revision.Nov 19 2020, 1:36 PM
Herald added a project: Restricted Project. · View Herald TranscriptNov 19 2020, 1:36 PM
GMNGeoffrey requested review of this revision.Nov 19 2020, 1:36 PM
This revision is now accepted and ready to land.Nov 19 2020, 1:39 PM
This revision was landed with ongoing or failed builds.Nov 19 2020, 1:55 PM
This revision was automatically updated to reflect the committed changes.