forked from swiftlang/swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathself.swift
24 lines (20 loc) · 999 Bytes
/
self.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// RUN: %target-swift-frontend -primary-file %s -emit-ir -g -o - | FileCheck %s
public struct stuffStruct {
var a: Int64 = 6
var b: String = "Nothing"
}
public func f() {
var thing: stuffStruct = stuffStruct()
}
// In the constructor, self has a type of "inout stuffStruct", but it
// is constructed in an alloca. The debug info for the alloca should not
// describe a reference type as we would normally do with inout arguments.
//
// CHECK: define {{.*}} @_TFV4self11stuffStructCfT_S0_(
// CHECK-NEXT: entry:
// CHECK-NEXT: %[[ALLOCA:.*]] = alloca %V4self11stuffStruct, align {{(4|8)}}
// CHECK: call void @llvm.dbg.declare(metadata %V4self11stuffStruct* %[[ALLOCA]], metadata ![[SELF:.*]], metadata !{{[0-9]+}}), !dbg
// CHECK: !DICompositeType(tag: DW_TAG_structure_type, name: "stuffStruct",
// CHECK-SAME: identifier: [[STUFFSTRUCT:"[^"]+"]]
// CHECK: ![[SELF]] = !DILocalVariable(name: "self", arg: 1,
// CHECK-SAME: type: ![[STUFFSTRUCT]]