We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d997526 commit 74fce83Copy full SHA for 74fce83
lib/IRGen/IRGenModule.cpp
@@ -1641,7 +1641,8 @@ bool IRGenModule::useDllStorage() { return ::useDllStorage(Triple); }
1641
1642
bool IRGenModule::shouldPrespecializeGenericMetadata() {
1643
auto canPrespecializeTarget =
1644
- (Triple.isOSDarwin() || Triple.isTvOS() || Triple.isOSLinux());
+ (Triple.isOSDarwin() || Triple.isTvOS() ||
1645
+ (Triple.isOSLinux() && !(Triple.isARM() && Triple.isArch32Bit())));
1646
if (canPrespecializeTarget && isStandardLibrary()) {
1647
return true;
1648
}
0 commit comments