commit | 963aba3452ed99e818a650f34defdd6d579e0361 | [log] [tgz] |
---|---|---|
author | Reid Kleckner <[email protected]> | Mon Apr 23 17:05:47 2018 |
committer | Reid Kleckner <[email protected]> | Mon Apr 23 17:05:47 2018 |
tree | bfa231806cc8065c4c6359f9ccd64985b6168583 | |
parent | 7f31119fb0ca0ed01d2f7603516702d004752b55 [diff] |
Fix clang-cl warnings in compiler-rt The profile library was missing some includes and was erroneously using ftruncate. WinASan was using `= {0}` to initialize structs, which creates -Wmissing-field-initializers and -Wmissing-braces warnings with clang. Use `= {}` instead, since this is C++. llvm-svn: 330616