mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Type annotations for instruction operands are omitted, e.g. ``` %3 = struct $S(%1, %2) ``` Operand types are redundant anyway and were only used for sanity checking in the SIL parser. But: operand types _are_ printed if the definition of the operand value was not printed yet. This happens: * if the block with the definition appears after the block where the operand's instruction is located * if a block or instruction is printed in isolation, e.g. in a debugger The old behavior can be restored with `-Xllvm -sil-print-types`. This option is added to many existing test files which check for operand types in their check-lines.
24 lines
1.1 KiB
Swift
24 lines
1.1 KiB
Swift
// RUN: %target-swift-frontend -Xllvm -sil-print-types -emit-sil -Xllvm -sil-print-debuginfo %s \
|
|
// RUN: | %FileCheck %s
|
|
func use<T>(_ t: T) {}
|
|
|
|
func f(c: AnyObject??) {
|
|
let x = c
|
|
guard let x = x, let x = x else {
|
|
// CHECK: sil_scope [[S3:[0-9]+]] { {{.*}} parent @{{.*}}1f
|
|
// CHECK: sil_scope [[S4:[0-9]+]] { {{.*}} parent [[S3]] }
|
|
// CHECK: sil_scope [[S5:[0-9]+]] { {{.*}} parent [[S3]] }
|
|
// CHECK: sil_scope [[S6:[0-9]+]] { loc "{{.*}}":7:3 parent [[S5]] }
|
|
// CHECK: sil_scope [[S7:[0-9]+]] { loc "{{.*}}":7:17 parent [[S6]] }
|
|
// CHECK: sil_scope [[S8:[0-9]+]] { loc "{{.*}}":7:17 parent [[S6]] }
|
|
// CHECK: sil_scope [[S9:[0-9]+]] { loc "{{.*}}":7:28 parent [[S8]] }
|
|
// CHECK: sil_scope [[S10:[0-9]+]] { loc "{{.*}}":7:28 parent [[S8]] }
|
|
// CHECK: debug_value %{{.*}} : $Optional<Optional<AnyObject>>, let, name "x"{{.*}} scope [[S5]]
|
|
// CHECK: debug_value %{{.*}} : $Optional<AnyObject>, let, name "x", {{.*}} scope [[S8]]
|
|
// CHECK: debug_value %{{.*}} : $AnyObject, let, name "x", {{.*}} scope [[S10]]
|
|
fatalError()
|
|
}
|
|
// CHECK: function_ref {{.*3use.*}} scope [[S10]]
|
|
use(x)
|
|
}
|