master-next: Update Statistic initializers for LLVM r323999.

LLVM r323999 changed the Initialized field of llvm::Statistic from a
bool to std::atomic<bool>.
This commit is contained in:
Bob Wilson
2018-02-04 18:58:38 -08:00
parent 20b9e86de9
commit ac1376a7ce
2 changed files with 3 additions and 3 deletions

View File

@@ -22,7 +22,7 @@
#define SWIFT_FUNC_STAT \
do { \
static llvm::Statistic FStat = \
{DEBUG_TYPE, __func__, __func__, {0}, false}; \
{DEBUG_TYPE, __func__, __func__, {0}, {false}}; \
++FStat; \
} while (0)