Note ARM constant island alignment in the release notes.
authorJakob Stoklund Olesen <stoklund@2pi.dk>
Fri, 16 Dec 2011 16:07:41 +0000 (16:07 +0000)
committerJakob Stoklund Olesen <stoklund@2pi.dk>
Fri, 16 Dec 2011 16:07:41 +0000 (16:07 +0000)
The command line option should be removed, but not until the feature has
gotten a lot of testing. The ARMConstantIslandPass tends to have subtle
bugs that only show up after a while.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@146739 91177308-0d34-0410-b5e6-96231b3b80d8

docs/ReleaseNotes.html
lib/Target/ARM/ARMConstantIslandPass.cpp

index b9361a57739f6d1382bc9e0113064d37bf53940f..dbeba164557d7eb800bc6c6e70b2f9fd65e0b8e5 100644 (file)
@@ -366,8 +366,8 @@ Release Notes</a>.</h1>
 <p>New features of the ARM target include:</p>
 
 <ul>
-  <li>....</li>
-</ul>
+  <li>The constant island pass now supports basic block and constant pool entry
+  alignments greater than 4 bytes.</li> </ul>
 </div>
 
 
index 2039d41bf5aaf60cc6ccb701a6d1d3badc93e8de..fc85666855ca5f89c3532b05bba67cc030d8b9df 100644 (file)
@@ -52,6 +52,7 @@ static cl::opt<bool>
 AdjustJumpTableBlocks("arm-adjust-jump-tables", cl::Hidden, cl::init(true),
           cl::desc("Adjust basic block layout to better use TB[BH]"));
 
+// FIXME: This option should be removed once it has received sufficient testing.
 static cl::opt<bool>
 AlignConstantIslands("arm-align-constant-islands", cl::Hidden, cl::init(true),
           cl::desc("Align constant islands in code"));