From: Chris Lattner Date: Mon, 13 Oct 2008 16:55:18 +0000 (+0000) Subject: fix some crazily long lines. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=50ad45c2fbeda2b4d06efccacdf2819fe711a5b9;p=oota-llvm.git fix some crazily long lines. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@57444 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/LangRef.html b/docs/LangRef.html index 99eb163f8ca..137ed9e8dae 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -787,9 +787,13 @@ a power of 2.

Syntax:
-
-define [linkage] [visibility] [cconv] [ret attrs] <ResultType> @<FunctionName> ([argument list]) [fn Attrs] [section "name"] [align N] [gc] { ... }
-
+ +define [linkage] [visibility] + [cconv] [ret attrs] + <ResultType> @<FunctionName> ([argument list]) + [fn Attrs] [section "name"] [align N] + [gc] { ... } +
@@ -4153,8 +4157,11 @@ condition codes are evaluated identically to the
Example:
-  <result> = vfcmp oeq <2 x float> < float 4, float 0 >, < float 5, float 0 >       ; yields: result=<2 x i32> < i32 0, i32 -1 >
-  <result> = vfcmp ult <2 x double> < double 1, double 2 >, < double 2, double 2>   ; yields: result=<2 x i64> < i64 -1, i64 0 >
+  ; yields: result=<2 x i32> < i32 0, i32 -1 >
+  <result> = vfcmp oeq <2 x float> < float 4, float 0 >, < float 5, float 0 >
+  
+  ; yields: result=<2 x i64> < i64 -1, i64 0 >
+  <result> = vfcmp ult <2 x double> < double 1, double 2 >, < double 2, double 2>