Skip to content

Commit def59df

Browse files
authored
Merge pull request #39308 from aschwaighofer/swift_async_function_pointer_kind_auto_default_5.5
[release/5.5] Revert "Default to SwiftAsyncFramePointerKind::Always for now"
2 parents 968f1be + 45ce6b3 commit def59df

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::Always),
404+
SwiftAsyncFramePointer(SwiftAsyncFramePointerKind::Auto),
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=ALWAYS %s
1+
// RUN: %target-swift-frontend -disable-availability-checking -target x86_64-apple-macosx11 %s -S | %FileCheck -check-prefix=AUTO %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)