aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-04-18 18:52:03 +0000
committerChris Lattner <sabre@nondot.org>2002-04-18 18:52:03 +0000
commit0154505ab74e7bd0d4dc85dbddc1ff0df6357606 (patch)
tree0882c0c152f2493148fd219b2c5339ac08b280fb
parent10586abe9a06a63bff703388aed4c41667730f0b (diff)
Add a fixme so that we don't forget this is broken.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2298 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Transforms/IPO/InlineSimple.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/Transforms/IPO/InlineSimple.cpp b/lib/Transforms/IPO/InlineSimple.cpp
index 0a58eab83c..7f96278265 100644
--- a/lib/Transforms/IPO/InlineSimple.cpp
+++ b/lib/Transforms/IPO/InlineSimple.cpp
@@ -13,6 +13,9 @@
// is a good idea to to run a constant propogation pass, then a DCE pass
// sometime after running this pass.
//
+// FIXME: This pass should transform alloca instructions in the called function
+// into malloc/free pairs!
+//
//===----------------------------------------------------------------------===//
#include "llvm/Transforms/MethodInlining.h"