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
1005 B
Swift
24 lines
1005 B
Swift
// RUN: %empty-directory(%t)
|
|
// RUN: %build-clang-importer-objc-overlays
|
|
// RUN: %target-swift-frontend(mock-sdk: %clang-importer-sdk-nosource -I %t) -I \
|
|
// RUN: %S/../ClangImporter/Inputs/custom-modules -Xllvm -sil-print-types -emit-sil -o /dev/null \
|
|
// RUN: -primary-file %s -Xllvm -sil-print-types -Xllvm -sil-print-debuginfo -module-name patatino \
|
|
// RUN: -Onone -Xllvm -sil-print-types -Xllvm -sil-print-after=diagnostic-constant-propagation \
|
|
// RUN: 2>&1 | %FileCheck %s
|
|
|
|
// REQUIRES: objc_interop
|
|
// REQUIRES: OS=macosx
|
|
|
|
// Make sure that the destroy_addr instruction has the same scope of the
|
|
// instructions surrounding it.
|
|
|
|
// CHECK: destroy_addr %7 : $*Any, loc {{.*}}:22:19, scope 3
|
|
// CHECK: dealloc_stack %12 : $*Optional<Any>, loc {{.*}}:22:23, scope 3
|
|
// CHECK: dealloc_stack %7 : $*Any, loc {{.*}}:22:23, scope 3
|
|
// CHECK: dealloc_stack %6 : $*A, loc {{.*}}:22:7, scope 3
|
|
|
|
import Foundation
|
|
func indexedSubscripting(b b: B, idx: Int, a: A) {
|
|
var a2 = b[idx] as! A
|
|
}
|