Files
swift-mirror/test/DebugInfo/structs.swift
Saleem Abdulrasool 4bfdc5c4d4 test: apply some fix-its to DebugInfo tests
These tests were causing the current swift compiler to emit fix-it hints for
changes since the tests were written.  NFC.
2016-05-05 10:24:19 -07:00

35 lines
984 B
Swift

// RUN: %target-swift-frontend -primary-file %s -emit-ir -g -o - | FileCheck %s
// Capture the pointer size from type Int
// CHECK: %Si = type <{ i[[PTRSIZE:[0-9]+]] }>
struct A {
var fn : () -> ()
}
func test(_ x : A) {
var _ = x
}
// CHECK: define hidden void @_TF7structs4test
// CHECK: [[X_DBG:%.*]] = alloca
// CHECK: call void @llvm.dbg.declare(metadata {{.*}}* [[X_DBG]], metadata ![[X_MD:[0-9]+]], metadata
// CHECK: }
// CHECK: !DICompositeType(tag: DW_TAG_structure_type, name: "A"
// CHECK-SAME: identifier: [[A_DI:"[^"]+"]]
class C {
var lots_of_extra_storage: (Int, Int, Int) = (1, 2, 3)
var member: C = C()
}
// A class is represented by a pointer, so B's total size should be PTRSIZE.
// CHECK: !DICompositeType(tag: DW_TAG_structure_type, name: "B",
// CHECK-SAME: {{.*}}size: [[PTRSIZE]]
struct B {
var c : C
}
// CHECK: ![[X_MD]] = !DILocalVariable(name: "x", arg: 1
// CHECK-SAME: type: ![[A_DI]]