summaryrefslogtreecommitdiff
path: root/docs/ChrisNotes.txt
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2001-10-31 05:07:57 +0000
committerChris Lattner <sabre@nondot.org>2001-10-31 05:07:57 +0000
commit37aabf28b3ae64356b58d7e0bed2c6764bc52334 (patch)
treec63fdee814535adbe92a5ed801f44527d744f94d /docs/ChrisNotes.txt
parent11c862cf4661708bf4a52fe8a6b630bb844d76bd (diff)
downloadllvm-37aabf28b3ae64356b58d7e0bed2c6764bc52334.tar.gz
llvm-37aabf28b3ae64356b58d7e0bed2c6764bc52334.tar.bz2
llvm-37aabf28b3ae64356b58d7e0bed2c6764bc52334.tar.xz
Implemented constant propogation of cast instructions
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1064 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/ChrisNotes.txt')
-rw-r--r--docs/ChrisNotes.txt1
1 files changed, 0 insertions, 1 deletions
diff --git a/docs/ChrisNotes.txt b/docs/ChrisNotes.txt
index 735e2b4d96..158c5be986 100644
--- a/docs/ChrisNotes.txt
+++ b/docs/ChrisNotes.txt
@@ -5,7 +5,6 @@
arrays and multidim arrays
* Rewrite the llvm parser/lexer in http://www.antlr.org when time permits.
They actually do C++. Imagine that.
-* Need to implement constant propogation of cast instructions!
* Fix DCE to elminate br <c>, %L1, %L1 so that it can optimize the main of
fib.ll better. Currently I have to do this to get best results:
as < fib.ll | opt -inline -sccp -dce -sccp -dce |dis