mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-24 22:06:06 +00:00
29 lines
618 B
Objective-C
29 lines
618 B
Objective-C
// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -x objective-c -fobjc-arc -emit-pch -o %t %s
|
|
// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -x objective-c -fobjc-arc -include-pch %t -emit-llvm -o - %s | FileCheck %s
|
|
|
|
#ifndef HEADER
|
|
#define HEADER
|
|
|
|
typedef struct {
|
|
id f;
|
|
} S;
|
|
|
|
static inline id getObj(id a) {
|
|
S *p = &(S){ .f = a };
|
|
return p->f;
|
|
}
|
|
|
|
#else
|
|
|
|
// CHECK: %[[STRUCT_S:.*]] = type { ptr }
|
|
|
|
// CHECK: define internal ptr @getObj(
|
|
// CHECK: %[[_COMPOUNDLITERAL:.*]] = alloca %[[STRUCT_S]],
|
|
// CHECK: call void @__destructor_8_s0(ptr %[[_COMPOUNDLITERAL]])
|
|
|
|
id test(id a) {
|
|
return getObj(a);
|
|
}
|
|
|
|
#endif
|