Remove unused private fields
authorGeoffrey Martin-Noble <gcmn@google.com>
Thu, 19 Nov 2020 21:34:40 +0000 (13:34 -0800)
committerGeoffrey Martin-Noble <gcmn@google.com>
Thu, 19 Nov 2020 21:54:54 +0000 (13:54 -0800)
commitb156514f8d9951176e768e6078162dbaacccccdf
treecf1927633546958b3d3cd7eb022e40ce31336115
parenta91e96702a3b8ef19afc5b7d2e51ce6b6a7fded9
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
llvm/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp