Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Reland "Change the X86 datalayout to add three address spaces | Amy Huang | 2019-09-10 | 1 | -1/+1 |
| | | | | | | | | | | for 32 bit signed, 32 bit unsigned, and 64 bit pointers." This reverts 57076d3199fc2b0af4a3736b7749dd5462cacda5. Original review at https://reviews.llvm.org/D64931. Review for added fix at https://reviews.llvm.org/D66843. llvm-svn: 371568 | ||||
* | Revert "Change the X86 datalayout to add three address spaces for 32 bit ↵ | Vlad Tsyrklevich | 2019-08-28 | 1 | -1/+1 |
| | | | | | | | | | signed," This reverts commit r370083 because it caused check-lld failures on sanitizer-x86_64-linux-fast. llvm-svn: 370142 | ||||
* | Change the X86 datalayout to add three address spaces for 32 bit signed, | Amy Huang | 2019-08-27 | 1 | -1/+1 |
| | | | | | | 32 bit unsigned, and 64 bit pointers. llvm-svn: 370083 | ||||
* | [ThinLTO] Use std::map to get determistic imports files | Teresa Johnson | 2018-07-10 | 1 | -0/+7 |
Summary: I noticed that the .imports files emitted for distributed ThinLTO backends do not have consistent ordering. This is because StringMap iteration order is not guaranteed to be deterministic. Since we already have a std::map with this information, used when emitting the individual index files (ModuleToSummariesForIndex), use it for the imports files as well. This issue is likely causing some unnecessary rebuilds of the ThinLTO backends in our distributed build system as the imports files are inputs to those backends. Reviewers: pcc, steven_wu, mehdi_amini Subscribers: mehdi_amini, inglorion, eraman, steven_wu, dexonsmith, llvm-commits Differential Revision: https://reviews.llvm.org/D48783 llvm-svn: 336721 |