mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Fix IRGen debug info for swift_task_alloc'ed variables.
The old code attempted to load the variable despite not knowing its size. Fixed by describing the variable's address on the task heap.
This commit is contained in:
20
test/DebugInfo/async-task-alloc.swift
Normal file
20
test/DebugInfo/async-task-alloc.swift
Normal file
@@ -0,0 +1,20 @@
|
||||
// RUN: %target-swift-frontend %s -emit-ir -g -o - \
|
||||
// RUN: -module-name a -disable-availability-checking \
|
||||
// RUN: | %FileCheck %s --check-prefix=CHECK
|
||||
// REQUIRES: concurrency
|
||||
|
||||
// Test dynamically allocated local variables in async functions.
|
||||
|
||||
// CHECK-LABEL: define {{.*}} void @"$s1a1fyxxYalF"
|
||||
// CHECK: swift_task_alloc
|
||||
// CHECK-LABEL: define {{.*}} void @"$s1a1fyxxYalFTY0_"
|
||||
// CHECK-NEXT: entryresume.0:
|
||||
// CHECK-NEXT: call void @llvm.dbg.declare(metadata {{.*}}%0, metadata ![[T:[0-9]+]], {{.*}}!DIExpression({{.*}}DW_OP_deref
|
||||
// CHECK-NEXT: call void @llvm.dbg.declare(metadata {{.*}}%0, metadata ![[DYNA:[0-9]+]], {{.*}}!DIExpression({{.*}}DW_OP_deref
|
||||
|
||||
// CHECK: ![[DYNA]] = !DILocalVariable(name: "dyna"
|
||||
// CHECK: ![[T]] = !DILocalVariable(name: "t"
|
||||
public func f<T>(_ t: T) async -> T {
|
||||
let dyna = t
|
||||
return dyna
|
||||
}
|
||||
Reference in New Issue
Block a user