Files
clang-p2996/clang/test/CodeGenObjCXX/copy.mm
hyeongyu kim fd9b099906 Revert "[Clang/Test]: Rename enable_noundef_analysis to disable-noundef-analysis and turn it off by default"
This reverts commit aacfbb953e.

Revert "Fix lit test failures in CodeGenCoroutines"

This reverts commit 63fff0f5bf.
2021-11-09 02:15:55 +09:00

40 lines
819 B
Plaintext

// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fobjc-runtime=macosx-fragile-10.5 -emit-llvm -o - %s | FileCheck %s
// rdar://problem/9158302
// This should not use a memmove_collectable in non-GC mode.
namespace test0 {
struct A {
id x;
};
// CHECK: define{{.*}} [[A:%.*]]* @_ZN5test04testENS_1AE(
// CHECK: alloca
// CHECK-NEXT: getelementptr
// CHECK-NEXT: store
// CHECK-NEXT: [[CALL:%.*]] = call noalias nonnull i8* @_Znwm(
// CHECK-NEXT: bitcast
// CHECK-NEXT: bitcast
// CHECK-NEXT: bitcast
// CHECK-NEXT: call void @llvm.memcpy.p0i8.p0i8.i64(
// CHECK-NEXT: ret
A *test(A a) {
return new A(a);
}
}
// rdar://9780211
@protocol bork
@end
namespace test1 {
template<typename T> struct RetainPtr {
RetainPtr() {}
};
RetainPtr<id<bork> > x;
RetainPtr<id> y;
}