-
Notifications
You must be signed in to change notification settings - Fork 10.5k
/
Copy pathasync-direct-arg.swift
31 lines (26 loc) · 1.01 KB
/
async-direct-arg.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// RUN: %target-swift-frontend %s -emit-ir -g -o - \
// RUN: -module-name a -disable-availability-checking \
// RUN: -parse-as-library | %FileCheck %s --check-prefix=CHECK
// REQUIRES: concurrency
// REQUIRES: rdar74588568
// Test that x is described as a direct dbg.declare of the incoming function
// argument.
// CHECK-LABEL: define {{.*}} void @"$s1a3fibyS2iYF.resume.0"
// CHECK: call void @llvm.dbg.declare
// CHECK: call void @llvm.dbg.declare
// CHECK: call void @llvm.dbg.declare(metadata {{.*}}%0, metadata ![[X0:[0-9]+]], {{.*}}!DIExpression(DW_OP
// CHECK-LABEL: define {{.*}} void @"$s1a3fibyS2iYF.resume.1"
// FIXME: call void @llvm.dbg.declare(metadata {{.*}}%0, metadata ![[X1:[0-9]+]], {{.*}}!DIExpression(DW_OP
// CHECK: ![[X0]] = !DILocalVariable(name: "x"
// FIXME: ![[X1]] = !DILocalVariable(name: "x"
func fib(_ x: Int) async -> Int {
if x <= 1 { return 1 }
let a = await fib(x - 1)
let b = await fib(x - 2)
return a + b
}
@main struct Main {
static func main() async {
await fib(4)
}
}