Skip to content

Commit 7415d35

Browse files
authored
Merge pull request #15194 from slavapestov/enable-resilience-again
Enable resilience again
2 parents 54b28b6 + de4f1f8 commit 7415d35

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

stdlib/public/core/ClosedRange.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,7 @@ where Bound: Strideable, Bound.Stride: SignedInteger {
127127
}
128128

129129
extension ClosedRange where Bound : Strideable, Bound.Stride : SignedInteger {
130+
@_fixed_layout
130131
public enum Index {
131132
case pastEnd
132133
case inRange(Bound)
@@ -382,7 +383,7 @@ extension ClosedRange: Equatable {
382383

383384
extension ClosedRange : CustomStringConvertible {
384385
/// A textual representation of the range.
385-
@_inlineable // FIXME(sil-serialize-all)...\(
386+
@_inlineable // FIXME(sil-serialize-all)...
386387
public var description: String {
387388
return "\(lowerBound)...\(upperBound)"
388389
}

utils/build-script-impl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ KNOWN_SETTINGS=(
7070
llvm-num-parallel-lto-link-jobs "" "The number of parallel link jobs to use when compiling llvm"
7171
swift-stdlib-build-type "Debug" "the CMake build variant for Swift"
7272
swift-stdlib-enable-assertions "1" "enable assertions in Swift"
73-
swift-stdlib-enable-resilience "0" "build the Swift stdlib and overlays with resilience enabled"
73+
swift-stdlib-enable-resilience "1" "build the Swift stdlib and overlays with resilience enabled"
7474
swift-stdlib-use-nonatomic-rc "0" "build the Swift stdlib and overlays with nonatomic reference count operations enabled"
7575
lldb-build-type "Debug" "the CMake build variant for LLDB"
7676
lldb-build-with-xcode "1" "Use xcodebuild to build LLDB, instead of CMake"

0 commit comments

Comments
 (0)