[llvm-commits] [llvm] r138346 - /llvm/trunk/docs/LangRef.html

Rafael Espindola rafael.espindola at gmail.com
Tue Aug 23 11:26:56 PDT 2011


Author: rafael
Date: Tue Aug 23 13:26:56 2011
New Revision: 138346

URL: http://llvm.org/viewvc/llvm-project?rev=138346&view=rev
Log:
Fix an example in the documentation.
Patch by Sanjoy Das!

Modified:
    llvm/trunk/docs/LangRef.html

Modified: llvm/trunk/docs/LangRef.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/LangRef.html?rev=138346&r1=138345&r2=138346&view=diff
==============================================================================
--- llvm/trunk/docs/LangRef.html (original)
+++ llvm/trunk/docs/LangRef.html Tue Aug 23 13:26:56 2011
@@ -7701,7 +7701,7 @@
 <pre class="doc_code">
   %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)*
 </pre>
 





More information about the llvm-commits mailing list