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.
33 lines
751 B
Plaintext
33 lines
751 B
Plaintext
// RUN: %target-sil-opt -sil-print-types %s -phi-expansion | %FileCheck %s
|
|
|
|
sil_stage canonical
|
|
|
|
import Swift
|
|
|
|
struct Mystruct {
|
|
var i: Int
|
|
var j: Int
|
|
}
|
|
|
|
// CHECK-LABEL: sil @test_simple
|
|
// CHECK: br bb3(%{{[0-9]*}} : $Int)
|
|
// CHECK: bb3(%[[PHI:[0-9]*]] : $Int):
|
|
// CHECK: debug_value %[[PHI]] : $Int, let, name "pos", type $Mystruct, expr op_fragment:#Mystruct.i
|
|
// CHECK: } // end sil function 'test_simple'
|
|
|
|
sil @test_simple : $@convention(thin) (Mystruct, Mystruct) -> Int {
|
|
bb0(%0 : $Mystruct, %1 : $Mystruct):
|
|
cond_br undef, bb1, bb2
|
|
|
|
bb1:
|
|
br bb3(%0 : $Mystruct)
|
|
|
|
bb2:
|
|
br bb3(%1 : $Mystruct)
|
|
|
|
bb3(%5 : $Mystruct):
|
|
debug_value %5 : $Mystruct, let, name "pos"
|
|
%6 = struct_extract %5 : $Mystruct, #Mystruct.i
|
|
return %6 : $Int
|
|
}
|