]> granicus.if.org Git - clang/commit
[CodeGen] Fix assignments of inline layouts into the byref structure
authorVedant Kumar <vsk@apple.com>
Mon, 21 Dec 2015 19:30:37 +0000 (19:30 +0000)
committerVedant Kumar <vsk@apple.com>
Mon, 21 Dec 2015 19:30:37 +0000 (19:30 +0000)
commitf6a69116df1a959ce374f97fcacbbcbf71dea363
tree995e52ea5f09dc3edd57a16d420372d921a2f72a
parentb8cc716acd20e16ef3a8e66d6c561a4971330c0c
[CodeGen] Fix assignments of inline layouts into the byref structure

When using blocks, a byref structure is created to represent the
closure. The "byref.layout" field of this structure is an i8*. However,
some 'inline' layouts are represented as i64's, not i8*'s.

Prior to r246985 we cast the i64 'inline' layout to an i8* before
assigning it into the byref structure. This patch brings the cast back
and adds a regression test.

rdar://23713871

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@256185 91177308-0d34-0410-b5e6-96231b3b80d8
lib/CodeGen/CGObjCMac.cpp
lib/CodeGen/CGObjCRuntime.h
test/CodeGenObjCXX/blocks.mm