From 63e4ccb3cd4110b59aca03ae3dec554006cdc506 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 17 Aug 2010 17:13:42 +0000 Subject: add some  's to a pre to avoid newlines being eaten and the formatting being thrown off. I admit to not knowing what is going on here. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111249 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/LangRef.html | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/docs/LangRef.html b/docs/LangRef.html index ff707a45b6..2c38a6c55f 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -491,20 +491,21 @@ the "hello world" module:

-; Declare the string constant as a global constant.
-@.LC0 = internal constant [13 x i8] c"hello world\0A\00"    ; [13 x i8]*
+; Declare the string constant as a global constant. 
+@.LC0 = internal constant [13 x i8] c"hello world\0A\00"      ; [13 x i8]* 
 
-; External declaration of the puts function
-declare i32 @puts(i8*)                                     ; i32 (i8*)* 
+; External declaration of the puts function 
+declare i32 @puts(i8*)                                      ; i32 (i8*)*  
 
 ; Definition of main function
-define i32 @main() {                                        ; i32()* 
-  ; Convert [13 x i8]* to i8  *...
-  %cast210 = getelementptr [13 x i8]* @.LC0, i64 0, i64 0   ; i8*
+define i32 @main() {   ; i32()*  
+  ; Convert [13 x i8]* to i8  *... 
+  %cast210 = getelementptr [13 x i8]* @.LC0, i64 0, i64 0   ; i8* 
 
-  ; Call puts function to write out the string to stdout.
-  call i32 @puts(i8* %cast210)                             ; i32
-  ret i32 0
} + ; Call puts function to write out the string to stdout.  + call i32 @puts(i8* %cast210) ; i32  + ret i32 0  +} ; Named metadata !1 = metadata !{i32 41} -- cgit v1.2.3