From: Chris Lattner Date: Thu, 24 Apr 2008 06:00:30 +0000 (+0000) Subject: % -> @ X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=173405599993582e88b9a4fbd73e5675c2117173;p=oota-llvm.git % -> @ git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50206 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/GarbageCollection.html b/docs/GarbageCollection.html index 6086a082dd3..91768f1e533 100644 --- a/docs/GarbageCollection.html +++ b/docs/GarbageCollection.html @@ -366,7 +366,7 @@ programs that use different garbage collection algorithms.

- void %llvm.gcroot(i8** %ptrloc, i8* %metadata) + void @llvm.gcroot(i8** %ptrloc, i8* %metadata)
@@ -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