Remove BLOCK_BYREF_LAYOUT_BYREF flags from list of

flags for __block variable meta-data.

llvm-svn: 166811
This commit is contained in:
Fariborz Jahanian 2012-10-26 20:33:59 +00:00
parent 6dc1e2f287
commit 5f8d32425d
1 changed files with 2 additions and 3 deletions

View File

@ -54,9 +54,8 @@ enum BlockByrefFlags {
BLOCK_BYREF_LAYOUT_EXTENDED = (1 << 28),
BLOCK_BYREF_LAYOUT_NON_OBJECT = (2 << 28),
BLOCK_BYREF_LAYOUT_STRONG = (3 << 28),
BLOCK_BYREF_LAYOUT_BYREF = (4 << 28),
BLOCK_BYREF_LAYOUT_WEAK = (5 << 28),
BLOCK_BYREF_LAYOUT_UNRETAINED = (6 << 28)
BLOCK_BYREF_LAYOUT_WEAK = (4 << 28),
BLOCK_BYREF_LAYOUT_UNRETAINED = (5 << 28)
};
enum BlockLiteralFlags {