mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Merge conflict while removing `nocapture` from
`s21move_function_dbginfo20addressOnlyValueTestyyxAA1PRzlF`. Resolution
was to remove nocapture from the expected output in both cases:
```
// CHECK-LABEL: define swiftcc void @"$s21move_function_dbginfo20addressOnlyValueTestyyxAA1PRzlF"(ptr noalias[-nocapture-] %0, ptr %T, ptr %T.P)
```
Conflict cause: 4858cb6225
This is the same as the original change to this file. The conflict seems
to be due to the next line changing, when moving from llvm.dbg.addr to
llvm.dbg.value.
Conflicts:
test/DebugInfo/move_function_dbginfo.swift
59 lines
1.9 KiB
Swift
59 lines
1.9 KiB
Swift
// RUN: %swift -prespecialize-generic-metadata -target %module-target-future -emit-ir %s | %FileCheck %s -DINT=i%target-ptrsize -DALIGNMENT=%target-alignment
|
|
|
|
// REQUIRES: VENDOR=apple || OS=linux-gnu
|
|
// UNSUPPORTED: CPU=i386 && OS=ios
|
|
// UNSUPPORTED: CPU=armv7 && OS=ios
|
|
// UNSUPPORTED: CPU=armv7s && OS=ios
|
|
|
|
// CHECK: @"$s4main5Value[[UNIQUE_ID_1:[0-9A-Z_]+]]OySiGMf" = linkonce_odr hidden constant <{
|
|
// CHECK-SAME: ptr,
|
|
// CHECK-SAME: [[INT]],
|
|
// CHECK-SAME: ptr,
|
|
// CHECK-SAME: ptr,
|
|
// CHECK-SAME: i64
|
|
// CHECK-SAME: }> <{
|
|
// ptr {{[^@]*}}@"$s4main5Value[[UNIQUE_ID_1]]OySiGWV"{{[^,]*}},
|
|
// CHECK-SAME: [[INT]] 513,
|
|
// CHECK-SAME: $s4main5Value[[UNIQUE_ID_1]]OMn
|
|
// CHECK-SAME: $sSiN
|
|
// CHECK-SAME: i64 3
|
|
// CHECK-SAME: }>, align [[ALIGNMENT]]
|
|
|
|
fileprivate enum Value<First> {
|
|
case first(First)
|
|
}
|
|
|
|
@inline(never)
|
|
func consume<T>(_ t: T) {
|
|
withExtendedLifetime(t) { t in
|
|
}
|
|
}
|
|
|
|
// CHECK: define hidden swiftcc void @"$s4main4doityyF"() #{{[0-9]+}} {
|
|
// CHECK: call swiftcc void @"$s4main7consumeyyxlF"(
|
|
// CHECK-SAME: ptr noalias %{{[0-9]+}},
|
|
// CHECK-SAME: ptr getelementptr inbounds (
|
|
// CHECK-SAME: %swift.full_type,
|
|
// CHECK-SAME: $s4main5Value[[UNIQUE_ID_1]]OySiGMf
|
|
// CHECK-SAME: i32 0,
|
|
// CHECK-SAME: i32 2
|
|
// CHECK-SAME: )
|
|
// CHECK-SAME: )
|
|
// CHECK: }
|
|
func doit() {
|
|
consume( Value.first(13) )
|
|
}
|
|
doit()
|
|
|
|
// CHECK: ; Function Attrs: noinline nounwind memory(none)
|
|
// CHECK: define internal swiftcc %swift.metadata_response @"$s4main5Value[[UNIQUE_ID_1]]OMa"([[INT]] %0, ptr %1) #{{[0-9]+}} {{(section)?.*}}{
|
|
// CHECK: entry:
|
|
// CHECK: {{%[0-9]+}} = call swiftcc %swift.metadata_response @__swift_instantiateCanonicalPrespecializedGenericMetadata(
|
|
// CHECK-SAME: [[INT]] %0,
|
|
// CHECK-SAME: ptr %1,
|
|
// CHECK-SAME: ptr undef,
|
|
// CHECK-SAME: ptr undef,
|
|
// CHECK-SAME: $s4main5Value[[UNIQUE_ID_1]]OMn
|
|
// CHECK: ret %swift.metadata_response {{%[0-9]+}}
|
|
// CHECK: }
|