diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2012-03-21 22:58:28 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2012-03-21 22:58:28 +0000 |
commit | 98a92d199ce9993dca1b65927009013ad3e5297f (patch) | |
tree | b73e03f82cd1d6cf6db6a17f264bf6e57f90445d /docs | |
parent | 07269265b048b4781bc446a3a35e405e9fb71b29 (diff) | |
download | external_llvm-98a92d199ce9993dca1b65927009013ad3e5297f.zip external_llvm-98a92d199ce9993dca1b65927009013ad3e5297f.tar.gz external_llvm-98a92d199ce9993dca1b65927009013ad3e5297f.tar.bz2 |
Add a release note for r145714.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@153224 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r-- | docs/ReleaseNotes.html | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/docs/ReleaseNotes.html b/docs/ReleaseNotes.html index fd95a8a..c1b1f41 100644 --- a/docs/ReleaseNotes.html +++ b/docs/ReleaseNotes.html @@ -483,6 +483,37 @@ syntax, there are still significant gaps in that support.</p> LLVM API changes are:</p> <ul> + <li>Target specific options have been moved from global variables to members + on the new <code>TargetOptions</code> class, which is local to each + <code>TargetMachine</code>. As a consequence, the associated flags will + no longer be accepted by <tt>clang -mllvm</tt>. This includes: +<ul> +<li><code>llvm::PrintMachineCode</code> +<li><code>llvm::NoFramePointerElim</code> +<li><code>llvm::NoFramePointerElimNonLeaf</code> +<li><code>llvm::DisableFramePointerElim(const MachineFunction &)</code> +<li><code>llvm::LessPreciseFPMADOption</code> +<li><code>llvm::LessPrecideFPMAD()</code> +<li><code>llvm::NoExcessFPPrecision</code> +<li><code>llvm::UnsafeFPMath</code> +<li><code>llvm::NoInfsFPMath</code> +<li><code>llvm::NoNaNsFPMath</code> +<li><code>llvm::HonorSignDependentRoundingFPMathOption</code> +<li><code>llvm::HonorSignDependentRoundingFPMath()</code> +<li><code>llvm::UseSoftFloat</code> +<li><code>llvm::FloatABIType</code> +<li><code>llvm::NoZerosInBSS</code> +<li><code>llvm::JITExceptionHandling</code> +<li><code>llvm::JITEmitDebugInfo</code> +<li><code>llvm::JITEmitDebugInfoToDisk</code> +<li><code>llvm::GuaranteedTailCallOpt</code> +<li><code>llvm::StackAlignmentOverride</code> +<li><code>llvm::RealignStack</code> +<li><code>llvm::DisableJumpTables</code> +<li><code>llvm::EnableFastISel</code> +<li><code>llvm::getTrapFunctionName()</code> +<li><code>llvm::EnableSegmentedStacks</code> +</ul></li> <li>....</li> </ul> |