fix some bugs
authorChris Lattner <sabre@nondot.org>
Mon, 25 Apr 2005 00:38:52 +0000 (00:38 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 25 Apr 2005 00:38:52 +0000 (00:38 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21515 91177308-0d34-0410-b5e6-96231b3b80d8

docs/CodeGenerator.html

index 258fd04e20e5128f5d3d9f48420915e5c8c92063..0fe6a78ab54ec756d6756e19e5a9fc92588fdb19 100644 (file)
@@ -769,7 +769,8 @@ tasks:</p>
 <ol>
 <li><p>Convert values of unsupported types to values of supported types.</p>
     <p>There are two main ways of doing this: promoting a small type to a larger
-       type (e.g. f32 -> f64, or i16 -> i32), and demoting larg integer types
+       type (e.g. f32 -&gt; f64, or i16 -&gt; i32), and breaking up large 
+       integer types
        to smaller ones (e.g. implementing i64 with i32 operations where
        possible).  Type conversions can insert sign and zero extensions as 
        needed to make sure that the final code has the same behavior as the