1; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
2; RUN: opt < %s -passes=sroa -S | FileCheck %s
3target datalayout = "e-p:64:64:64:32"
4
5%struct.test = type { %struct.basic, %struct.basic }
6%struct.basic = type { i16, i8 }
7
8define i16 @test(ptr %ts2.i) {
9; CHECK-LABEL: @test(
10; CHECK-NEXT:  entry:
11; CHECK-NEXT:    [[S_SROA_0:%.*]] = alloca [3 x i8], align 8
12; CHECK-NEXT:    call void @llvm.memcpy.p0.p0.i32(ptr align 1 [[TS2_I:%.*]], ptr align 8 [[S_SROA_0]], i32 3, i1 false)
13; CHECK-NEXT:    [[TMP1:%.*]] = load i16, ptr [[TS2_I]], align 2
14; CHECK-NEXT:    ret i16 [[TMP1]]
15;
16entry:
17  %s = alloca %struct.test
18  call void @llvm.memcpy.p0.p0.i32(ptr %ts2.i, ptr %s, i32 3, i1 false)
19  %0 = load i16, ptr %ts2.i
20  ret i16 %0
21}
22
23declare void @llvm.memcpy.p0.p0.i32(ptr nocapture writeonly, ptr nocapture readonly, i32, i1)
24