Skip to content

Commit a93f777

Browse files
committed
Default to SwiftAsyncFramePointerKind::Always for now
1 parent a1a9dd1 commit a93f777

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
@@ -402,7 +402,7 @@ class IRGenOptions {
402402
EmitStackPromotionChecks(false), FunctionSections(false),
403403
PrintInlineTree(false), EmbedMode(IRGenEmbedMode::None),
404404
LLVMLTOKind(IRGenLLVMLTOKind::None),
405-
SwiftAsyncFramePointer(SwiftAsyncFramePointerKind::Auto),
405+
SwiftAsyncFramePointer(SwiftAsyncFramePointerKind::Always),
406406
HasValueNamesSetting(false),
407407
ValueNames(false), EnableReflectionMetadata(true),
408408
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)