1// RUN: %clang_cc1 -triple i686-unknown-windows-msvc -fobjc-runtime=ios-6.0 -Os -S -emit-llvm -o - %s -mframe-pointer=all | FileCheck %s
2
3struct S {
4  S() = default;
5  S(const S &) {}
6};
7
8@interface I
9+ (S)m:(S)s;
10@end
11
12S f() {
13  return [I m:S()];
14}
15
16// CHECK: declare dso_local void @objc_msgSend_stret(i8*, i8*, ...)
17// CHECK-NOT: declare dllimport void @objc_msgSend(i8*, i8*, ...)
18