diff options
author | Chris Lattner <sabre@nondot.org> | 2008-10-14 00:52:49 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-10-14 00:52:49 +0000 |
commit | cc0426123db658c2540ae0fc6365b92e478dbd2e (patch) | |
tree | 854b641425c4c84d0ae194598af226ddb2d50d84 /docs | |
parent | eeb4da0f69fe67ed500fff8090783333602ed993 (diff) | |
download | external_llvm-cc0426123db658c2540ae0fc6365b92e478dbd2e.zip external_llvm-cc0426123db658c2540ae0fc6365b92e478dbd2e.tar.gz external_llvm-cc0426123db658c2540ae0fc6365b92e478dbd2e.tar.bz2 |
more minor updates
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@57472 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r-- | docs/ReleaseNotes.html | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/docs/ReleaseNotes.html b/docs/ReleaseNotes.html index aefa4f1..02974bb 100644 --- a/docs/ReleaseNotes.html +++ b/docs/ReleaseNotes.html @@ -98,8 +98,7 @@ generation support is far enough along to build many C applications. While not yet production quality, it is progressing very nicely. In addition, C++ front-end work has started to make significant progress.</p> -<p>Codegen progress/state -</p> +<p>Codegen progress/state [DANIEL]</p> </div> @@ -112,6 +111,8 @@ front-end work has started to make significant progress.</p> <p>The <a href="http://clang.llvm.org/StaticAnalysis.html">static analysis tool</a> + +[TED] .</p> </div> @@ -127,7 +128,7 @@ The <a href="http://vmkit.llvm.org/">vmkit project</a> is an implementation of a JVM and a CLI Virtual Machines (Microsoft .NET is an implementation of the CLI) using the Just-In-Time compiler of LLVM.</p> -<p>...</p> +<p>[NICOLAS]</p> </div> @@ -244,12 +245,11 @@ nicely. They now print as "<tt>%3 = add i32 %A, 4</tt>" instead of operations (<tt>shl</tt>, <tt>ashr</tt>, <tt>lshr</tt>) now all support vectors and do an element-by-element shift (shifts of the whole vector can be accomplished by bitcasting the vector to <1 x i128> for example). Second, -there is support in development for vector comparisons. LLVM 2.4 actually -supports two ways to do vector comparisons: the vicmp/vfcmp instructions and the -icmp/fcmp instructions. The vicmp/vfcmp instructions are temporary and will be -removed (do not use them). The icmp/fcmp instructions compare two vectors and -return a vector of i1's for each result. Note that there is very little codegen -support available for any of these IR features though.</li> +there is initial support in development for vector comparisons with the +<a href="LangRef.html#i_fcmp">fcmp</a>/<a href="LangRef.html#i_icmp">icmp</a> +instructions. These instructions compare two vectors and return a vector of +i1's for each result. Note that there is very little codegen support available +for any of these IR features though.</li> <li>A new <tt>DebugInfoBuilder</tt> class is available, which makes it much easier for front-ends to create debug info descriptors, similar to the way that |