From 09e61ca6aff30fd6f409d92c6ef5515f05cf009e Mon Sep 17 00:00:00 2001 From: Jakob Stoklund Olesen Date: Mon, 28 Nov 2011 01:46:19 +0000 Subject: [PATCH] Add a blurb about the new ExecutionDepsFix pass. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@145220 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/ReleaseNotes.html | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/ReleaseNotes.html b/docs/ReleaseNotes.html index e98717278a2..e3b3bae9c29 100644 --- a/docs/ReleaseNotes.html +++ b/docs/ReleaseNotes.html @@ -941,7 +941,10 @@ be used to verify some algorithms.
  • The code generator now supports vector "select" operations on vector comparisons, turning them into various optimized code sequences (e.g. using the SSE4/AVX "blend" instructions).
  • -
  • XXX: Domain fixing pass is now target independent (ExecutionDepsFix pass). (Jakob)
  • +
  • The SSE execution domain fix pass and the ARM NEON move fix pass have been + merged to a target independent execution dependency fix pass. Targets can + override the getExecutionDomain and + setExecutionDomain hooks to use it.