diff options
author | Chris Lattner <sabre@nondot.org> | 2006-08-24 23:03:33 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-08-24 23:03:33 +0000 |
commit | ad69970c4a8b058c07bda0bf4b1c9947f1483659 (patch) | |
tree | a46e299181eb9587e26fb754030427cbdc188f41 /lib | |
parent | f7da2c7b0c6293c268881628fc351bed7763f1f4 (diff) | |
download | external_llvm-ad69970c4a8b058c07bda0bf4b1c9947f1483659.zip external_llvm-ad69970c4a8b058c07bda0bf4b1c9947f1483659.tar.gz external_llvm-ad69970c4a8b058c07bda0bf4b1c9947f1483659.tar.bz2 |
Owen implemented this.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29863 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Target/README.txt | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/Target/README.txt b/lib/Target/README.txt index 650eabf..cf24006 100644 --- a/lib/Target/README.txt +++ b/lib/Target/README.txt @@ -140,17 +140,6 @@ stuff too. //===---------------------------------------------------------------------===// -The loop unroller should be enhanced to be able to unroll loops that aren't -single basic blocks. It should be able to handle stuff like this: - - for (i = 0; i < c1; ++i) - if (c2 & (1 << i)) - foo - -where c1/c2 are constants. - -//===---------------------------------------------------------------------===// - For packed types, TargetData.cpp::getTypeInfo() returns alignment that is equal to the type size. It works but can be overly conservative as the alignment of specific packed types are target dependent. |