From: Rafael Espindola
Date: Tue, 23 Aug 2011 18:26:56 +0000 (+0000)
Subject: Fix an example in the documentation.
X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=3395fe1e4b615ca30da893edd48474c672a74da5;p=oota-llvm.git
Fix an example in the documentation.
Patch by Sanjoy Das!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138346 91177308-0d34-0410-b5e6-96231b3b80d8
---
diff --git a/docs/LangRef.html b/docs/LangRef.html
index fa4d74b67f2..cac0272769d 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -7701,7 +7701,7 @@ LLVM.
%tramp = alloca [10 x i8], align 4 ; size and alignment only correct for X86
%tramp1 = getelementptr [10 x i8]* %tramp, i32 0, i32 0
- %p = call i8* @llvm.init.trampoline(i8* %tramp1, i8* bitcast (i32 (i8* nest , i32, i32)* @f to i8*), i8* %nval)
+ %p = call i8* @llvm.init.trampoline(i8* %tramp1, i8* bitcast (i32 (i8*, i32, i32)* @f to i8*), i8* %nval)
%fp = bitcast i8* %p to i32 (i32, i32)*