diff options
author | Chris Lattner <sabre@nondot.org> | 2008-04-24 06:00:30 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-04-24 06:00:30 +0000 |
commit | 0b9db52fac508a25362bac94cf40acfb93518426 (patch) | |
tree | 2f356acbcc8f6639ddd2d79c35dd6f743c1b624e | |
parent | 851b77113ff9c98420bd6f4aa243a8e185f9a2ea (diff) | |
download | bcm5719-llvm-0b9db52fac508a25362bac94cf40acfb93518426.tar.gz bcm5719-llvm-0b9db52fac508a25362bac94cf40acfb93518426.zip |
% -> @
llvm-svn: 50206
-rw-r--r-- | llvm/docs/GarbageCollection.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/docs/GarbageCollection.html b/llvm/docs/GarbageCollection.html index 6086a082dd3..91768f1e533 100644 --- a/llvm/docs/GarbageCollection.html +++ b/llvm/docs/GarbageCollection.html @@ -366,7 +366,7 @@ programs that use different garbage collection algorithms.</p> </div> <div class="doc_code"><tt> - void %llvm.gcroot(i8** %ptrloc, i8* %metadata) + void @llvm.gcroot(i8** %ptrloc, i8* %metadata) </tt></div> <div class="doc_text"> @@ -399,7 +399,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** %X, i8* null) ... ;; "CodeBlock" is the block corresponding to the start |