[PATCH] D57055: [RISCV] Mark TLS as supported
James Clarke via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Jan 22 07:44:40 PST 2019
jrtc27 requested changes to this revision.
jrtc27 added inline comments.
This revision now requires changes to proceed.
================
Comment at: lib/Basic/Targets/RISCV.h:39
HasD(false), HasC(false) {
- TLSSupported = false;
+ TLSSupported = true;
LongDoubleWidth = 128;
----------------
With the exception of `SystemZTargetInfo`, all CPU target info classes rely on the base already initialising it to `true` by default, so you can just delete this line.
Repository:
rC Clang
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D57055/new/
https://reviews.llvm.org/D57055
More information about the cfe-commits
mailing list