diff options
author | Duncan Sands <baldrick@free.fr> | 2012-05-03 15:25:19 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2012-05-03 15:25:19 +0000 |
commit | 28d95b0a04ced9a07ab8913d4b2211946394e2b2 (patch) | |
tree | 3364e77cba41db97981eb79584bfa8d9817b7c92 | |
parent | b607264550b6d992cb299b0a9c832a6ed49d483c (diff) | |
download | external_llvm-28d95b0a04ced9a07ab8913d4b2211946394e2b2.zip external_llvm-28d95b0a04ced9a07ab8913d4b2211946394e2b2.tar.gz external_llvm-28d95b0a04ced9a07ab8913d4b2211946394e2b2.tar.bz2 |
Use correct variable in this example. Pointed out by waynix on IRC.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@156067 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | docs/GarbageCollection.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/GarbageCollection.html b/docs/GarbageCollection.html index 778297c..20f2c96 100644 --- a/docs/GarbageCollection.html +++ b/docs/GarbageCollection.html @@ -475,7 +475,7 @@ Entry: ;; Tell LLVM that the stack space is a stack root. ;; Java has type-tags on objects, so we pass null as metadata. %tmp = bitcast %Object** %X to i8** - call void @llvm.gcroot(i8** %X, i8* null) + call void @llvm.gcroot(i8** %tmp, i8* null) ... ;; "CodeBlock" is the block corresponding to the start |