[all-commits] [llvm/llvm-project] b15651: Remove unused private fields
Geoffrey Martin-Noble via All-commits
all-commits at lists.llvm.org
Thu Nov 19 13:55:15 PST 2020
Branch: refs/heads/master
Home: https://github.com/llvm/llvm-project
Commit: b156514f8d9951176e768e6078162dbaacccccdf
https://github.com/llvm/llvm-project/commit/b156514f8d9951176e768e6078162dbaacccccdf
Author: Geoffrey Martin-Noble <gcmn at google.com>
Date: 2020-11-19 (Thu, 19 Nov 2020)
Changed paths:
M llvm/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp
Log Message:
-----------
Remove unused private fields
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;
```
Reviewed By: stephan.yichao.zhao
Differential Revision: https://reviews.llvm.org/D91820
More information about the All-commits
mailing list