From 3223c77455721ff36292ecf449c2c217be7b0ed3 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 20 Jun 2001 19:27:34 +0000 Subject: [PATCH] Add stub for induction variable code llvm-svn: 38 --- tools/opt/opt.cpp | 1 + 1 file changed, 1 insertion(+) 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) {