diff options
author | Duncan Sands <baldrick@free.fr> | 2007-09-26 16:24:52 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2007-09-26 16:24:52 +0000 |
commit | 6b761d3e86720b461966c9f617328aeed9bc4944 (patch) | |
tree | f0e951eda92da21b3d17c85b4fc2b4ad6dc88963 | |
parent | 1827fa66c6ba1120ba8a9705c124cf26a7134375 (diff) | |
download | external_llvm-6b761d3e86720b461966c9f617328aeed9bc4944.zip external_llvm-6b761d3e86720b461966c9f617328aeed9bc4944.tar.gz external_llvm-6b761d3e86720b461966c9f617328aeed9bc4944.tar.bz2 |
X86 -> X86-32 in appropriate places.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42357 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | docs/ReleaseNotes.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/ReleaseNotes.html b/docs/ReleaseNotes.html index aa11404..917ca36 100644 --- a/docs/ReleaseNotes.html +++ b/docs/ReleaseNotes.html @@ -226,7 +226,7 @@ optimizer, speeding it up and making it more aggressive. For example:</p> "restrict" pointer arguments to functions.</li> <li>Duncan contributed support for trampolines (taking the address of a nested - function). Currently this is only supported on the X86 target.</li> + function). Currently this is only supported on the X86-32 target.</li> <li>Lauro Ramos Venancio contributed support to encode alignment info in load and store instructions, the foundation for other alignment-related @@ -529,7 +529,7 @@ bits.</p></li> As in Algol and Pascal, lexical scoping of functions. Nested functions are supported, but llvm-gcc does not support - taking the address of a nested function (except on the X86 target) + taking the address of a nested function (except on the X86-32 target) or non-local gotos.</li> <li><a href="http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html#Function%20Attributes">Function Attributes</a>: @@ -622,7 +622,7 @@ tested and works for a number of non-trivial programs, including LLVM itself, Qt, Mozilla, etc.</p> <ul> -<li>Exception handling only works well on the linux/x86-32 target. +<li>Exception handling only works well on the linux/X86-32 target. In some cases, illegally throwing an exception does not result in a call to terminate.</li> |