From cfe1f051915bc159cda244c8d08ea6fcca605de4 Mon Sep 17 00:00:00 2001 From: David Chisnall Date: Thu, 7 Jul 2011 09:49:59 +0000 Subject: [PATCH] Fix example: variable is initialized to 10 and then has 11 stored in it, but in the expanded version is initialized to 11. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@134610 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/Block-ABI-Apple.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Block-ABI-Apple.txt b/docs/Block-ABI-Apple.txt index 4a97aa9bd6..8e67f01a44 100644 --- a/docs/Block-ABI-Apple.txt +++ b/docs/Block-ABI-Apple.txt @@ -317,7 +317,7 @@ would be rewritten to be: int flags; //refcount; int size; int captured_i; - } i = { NULL, &i, 0, sizeof(struct _block_byref_i), 11 }; + } i = { NULL, &i, 0, sizeof(struct _block_byref_i), 10 }; i.forwarding->captured_i = 11; -- 2.50.1