diff options
Diffstat (limited to 'lib/CodeGen')
-rw-r--r-- | lib/CodeGen/CGBlocks.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/CodeGen/CGBlocks.h b/lib/CodeGen/CGBlocks.h index 73fa817380..690fa8b05e 100644 --- a/lib/CodeGen/CGBlocks.h +++ b/lib/CodeGen/CGBlocks.h @@ -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 { |