add a note
authorChris Lattner <sabre@nondot.org>
Sun, 10 Aug 2008 00:47:21 +0000 (00:47 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 10 Aug 2008 00:47:21 +0000 (00:47 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54602 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/README.txt

index e9133721f48f92e602f7ae9c0653f646ebdf0f3d..fe11900353342edf83edc58b4f002556b61d6220 100644 (file)
@@ -438,6 +438,19 @@ long long fib(const long long n) {
 
 //===---------------------------------------------------------------------===//
 
+Tail recursion elimination should handle:
+
+int pow2m1(int n) {
+ if (n == 0)
+   return 0;
+ return 2 * pow2m1 (n - 1) + 1;
+}
+
+Also, multiplies can be turned into SHL's, so they should be handled as if
+they were associative.  "return foo() << 1" can be tail recursion eliminated.
+
+//===---------------------------------------------------------------------===//
+
 Argument promotion should promote arguments for recursive functions, like 
 this: