Skip to content

Commit 44d42d8

Browse files
aschwaighoferDougGregor
authored andcommitted
Default to SwiftAsyncFramePointerKind::Always for now
(cherry picked from commit a93f777)
1 parent 0b21f02 commit 44d42d8

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