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 7da273e commit 0891255Copy full SHA for 0891255
lib/IRGen/IRGenModule.cpp
@@ -1609,7 +1609,8 @@ bool IRGenModule::useDllStorage() { return ::useDllStorage(Triple); }
1609
1610
bool IRGenModule::shouldPrespecializeGenericMetadata() {
1611
auto canPrespecializeTarget =
1612
- (Triple.isOSDarwin() || Triple.isTvOS() || Triple.isOSLinux());
+ (Triple.isOSDarwin() || Triple.isTvOS() ||
1613
+ (Triple.isOSLinux() && !(Triple.isARM() && Triple.isArch32Bit())));
1614
if (canPrespecializeTarget && isStandardLibrary()) {
1615
return true;
1616
}
0 commit comments