Skip to content

Commit 87883b8

Browse files
committed
Default to SwiftAsyncFramePointerKind::Always for now
1 parent 0097f7e commit 87883b8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

include/swift/AST/IRGenOptions.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ class IRGenOptions {
399399
EmitStackPromotionChecks(false), FunctionSections(false),
400400
PrintInlineTree(false), EmbedMode(IRGenEmbedMode::None),
401401
LLVMLTOKind(IRGenLLVMLTOKind::None),
402-
SwiftAsyncFramePointer(SwiftAsyncFramePointerKind::Auto),
402+
SwiftAsyncFramePointer(SwiftAsyncFramePointerKind::Always),
403403
HasValueNamesSetting(false),
404404
ValueNames(false), EnableReflectionMetadata(true),
405405
EnableReflectionNames(true), EnableAnonymousContextMangledNames(false),

test/IRGen/swift_async_extended_frame_info.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// RUN: %target-swift-frontend -disable-availability-checking -target x86_64-apple-macosx11 %s -S | %FileCheck -check-prefix=AUTO %s
1+
// RUN: %target-swift-frontend -disable-availability-checking -target x86_64-apple-macosx11 %s -S | %FileCheck -check-prefix=ALWAYS %s
22
// RUN: %target-swift-frontend -disable-availability-checking -target x86_64-apple-macosx12 %s -S | %FileCheck -check-prefix=ALWAYS %s
33
// RUN: %target-swift-frontend -disable-availability-checking -swift-async-frame-pointer=auto -target x86_64-apple-macosx11 %s -S | %FileCheck -check-prefix=AUTO %s
44
// RUN: %target-swift-frontend -disable-availability-checking -swift-async-frame-pointer=auto -target x86_64-apple-macosx12 %s -S | %FileCheck -check-prefix=ALWAYS %s

0 commit comments

Comments
 (0)