File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -2527,6 +2527,8 @@ static const char *const KnownPrespecializations[] = {
2527
2527
};
2528
2528
2529
2529
bool swift::isKnownPrespecialization (StringRef SpecName) {
2530
+ // Completely disable for now.
2531
+ #if false
2530
2532
// TODO: Once there is an efficient API to check if
2531
2533
// a given symbol is a specialization of a specific type,
2532
2534
// use it instead. Doing demangling just for this check
@@ -2577,6 +2579,7 @@ bool swift::isKnownPrespecialization(StringRef SpecName) {
2577
2579
}
2578
2580
}
2579
2581
2582
+ #endif
2580
2583
return false ;
2581
2584
}
2582
2585
Original file line number Diff line number Diff line change 1
1
// RUN: %target-swift-frontend %s -Onone -Xllvm -sil-inline-generics=false -emit-sil | %FileCheck %s
2
2
3
+ // This is disabled for now.
4
+ // REQUIRES: rdar48924409
5
+
3
6
// REQUIRES: optimized_stdlib
4
7
5
8
// Check that pre-specialization works at -Onone.
You can’t perform that action at this time.
0 commit comments