blob: 842346e007acc967cce3460a088b15dceab05fc0 [file] [log] [blame]
Nick Lewycky6f7d8342009-10-13 07:03:23 +00001; RUN: llvm-as -disable-output < %s
2
3%"struct.std::pair<int,int>" = type { i32, i32 }
4
5declare void @_Z3barRKi(i32*)
6
7declare void @llvm.lifetime.start(i64, i8* nocapture) nounwind
8declare void @llvm.lifetime.end(i64, i8* nocapture) nounwind
Mehdi Amini8c629ec2016-08-13 23:31:24 +00009declare {}* @llvm.invariant.start.p0i8(i64, i8* nocapture) readonly nounwind
10declare void @llvm.invariant.end.p0i8({}*, i64, i8* nocapture) nounwind
Nick Lewycky6f7d8342009-10-13 07:03:23 +000011
12define i32 @_Z4foo2v() nounwind {
13entry:
14 %x = alloca %"struct.std::pair<int,int>"
15 %y = bitcast %"struct.std::pair<int,int>"* %x to i8*
16
17 ;; Constructor starts here (this isn't needed since it is immediately
18 ;; preceded by an alloca, but shown for completeness).
19 call void @llvm.lifetime.start(i64 8, i8* %y)
20
David Blaikie79e6c742015-02-27 19:29:02 +000021 %0 = getelementptr %"struct.std::pair<int,int>", %"struct.std::pair<int,int>"* %x, i32 0, i32 0
Nick Lewycky6f7d8342009-10-13 07:03:23 +000022 store i32 4, i32* %0, align 8
David Blaikie79e6c742015-02-27 19:29:02 +000023 %1 = getelementptr %"struct.std::pair<int,int>", %"struct.std::pair<int,int>"* %x, i32 0, i32 1
Nick Lewycky6f7d8342009-10-13 07:03:23 +000024 store i32 5, i32* %1, align 4
25
26 ;; Constructor has finished here.
Mehdi Amini8c629ec2016-08-13 23:31:24 +000027 %inv = call {}* @llvm.invariant.start.p0i8(i64 8, i8* %y)
Nick Lewycky6f7d8342009-10-13 07:03:23 +000028 call void @_Z3barRKi(i32* %0) nounwind
David Blaikiea79ac142015-02-27 21:17:42 +000029 %2 = load i32, i32* %0, align 8
Nick Lewycky6f7d8342009-10-13 07:03:23 +000030
31 ;; Destructor is run here.
Mehdi Amini8c629ec2016-08-13 23:31:24 +000032 call void @llvm.invariant.end.p0i8({}* %inv, i64 8, i8* %y)
Nick Lewycky6f7d8342009-10-13 07:03:23 +000033 ;; Destructor is done here.
34 call void @llvm.lifetime.end(i64 8, i8* %y)
35 ret i32 %2
36}