diff options
author | Manman Ren <manman.ren@gmail.com> | 2016-01-29 23:46:55 +0000 |
---|---|---|
committer | Manman Ren <manman.ren@gmail.com> | 2016-01-29 23:46:55 +0000 |
commit | ce7bff5e7fc1ca5d66c3068f97d719dfbad5bd10 (patch) | |
tree | d7b06b177c2463b5005a48c440acac7d3f65c258 /clang/test/CodeGenObjC/objc2-protocol-metadata.m | |
parent | 96df0b33f6a253eb65a4088649c44c9b479e099a (diff) | |
download | bcm5719-llvm-ce7bff5e7fc1ca5d66c3068f97d719dfbad5bd10.tar.gz bcm5719-llvm-ce7bff5e7fc1ca5d66c3068f97d719dfbad5bd10.zip |
Class Property: generate metadata for class properties in protocols.
The list of class properties is saved in
Old ABI: protocol->ext->class_properties (protocol->ext->size will be updated)
New ABI: protocol->class_properties (protocol->size will be updated)
rdar://23891898
llvm-svn: 259268
Diffstat (limited to 'clang/test/CodeGenObjC/objc2-protocol-metadata.m')
-rw-r--r-- | clang/test/CodeGenObjC/objc2-protocol-metadata.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGenObjC/objc2-protocol-metadata.m b/clang/test/CodeGenObjC/objc2-protocol-metadata.m index 191016be851..8e186fcee43 100644 --- a/clang/test/CodeGenObjC/objc2-protocol-metadata.m +++ b/clang/test/CodeGenObjC/objc2-protocol-metadata.m @@ -14,4 +14,4 @@ + ClsP { return 0; } @end -// CHECK: %struct._protocol_t = type { i8*, i8*, %struct._objc_protocol_list*, %struct.__method_list_t*, %struct.__method_list_t*, %struct.__method_list_t*, %struct.__method_list_t*, %struct._prop_list_t*, i32, i32, i8**, i8* } +// CHECK: %struct._protocol_t = type { i8*, i8*, %struct._objc_protocol_list*, %struct.__method_list_t*, %struct.__method_list_t*, %struct.__method_list_t*, %struct.__method_list_t*, %struct._prop_list_t*, i32, i32, i8**, i8*, %struct._prop_list_t* } |