[llvm-commits] [llvm] r50206 - /llvm/trunk/docs/GarbageCollection.html
Chris Lattner
sabre at nondot.org
Wed Apr 23 23:00:30 PDT 2008
Author: lattner
Date: Thu Apr 24 01:00:30 2008
New Revision: 50206
URL: http://llvm.org/viewvc/llvm-project?rev=50206&view=rev
Log:
% -> @
Modified:
llvm/trunk/docs/GarbageCollection.html
Modified: llvm/trunk/docs/GarbageCollection.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/GarbageCollection.html?rev=50206&r1=50205&r2=50206&view=diff
==============================================================================
--- llvm/trunk/docs/GarbageCollection.html (original)
+++ llvm/trunk/docs/GarbageCollection.html Thu Apr 24 01:00:30 2008
@@ -366,7 +366,7 @@
</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 @@
;; 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
More information about the llvm-commits
mailing list