XFAIL the test cases for r186044 on Hexagon
[oota-llvm.git] / lib / Support / Windows / ThreadLocal.inc
index 99c6f4f63b36348cf9753ac5576d7633fc11b03f..057deb325d6e8dcfbe75febcdabe531852c43ff5 100644 (file)
@@ -22,7 +22,7 @@
 namespace llvm {
 using namespace sys;
 
-ThreadLocalImpl::ThreadLocalImpl() : data(0) {
+ThreadLocalImpl::ThreadLocalImpl() : data() {
   typedef int SIZE_TOO_BIG[sizeof(DWORD) <= sizeof(data) ? 1 : -1];
   DWORD* tls = reinterpret_cast<DWORD*>(&data);
   *tls = TlsAlloc();