From: Chris Lattner Date: Wed, 20 Jun 2001 19:27:34 +0000 (+0000) Subject: Add stub for induction variable code X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=b12063919fb597372d165dc49dbc381ffe04f78f;p=oota-llvm.git Add stub for induction variable code git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@38 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/opt/opt.cpp b/tools/opt/opt.cpp index 9485562ab1b..100a753df4a 100644 --- a/tools/opt/opt.cpp +++ b/tools/opt/opt.cpp @@ -36,6 +36,7 @@ struct { { "-inline" ,"Method Inlining", DoMethodInlining }, { "-strip" ,"Strip Symbols", DoSymbolStripping }, { "-mstrip" ,"Strip Module Symbols", DoFullSymbolStripping }, + { "-indvars" ,"Simplify Induction Vars", DoInductionVariableCannonicalize }, }; int main(int argc, char **argv) {