aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tools/gccas/Makefile2
-rw-r--r--tools/gccas/gccas.cpp2
2 files changed, 3 insertions, 1 deletions
diff --git a/tools/gccas/Makefile b/tools/gccas/Makefile
index bdd41a3..c5f6a49 100644
--- a/tools/gccas/Makefile
+++ b/tools/gccas/Makefile
@@ -1,6 +1,6 @@
LEVEL = ../..
TOOLNAME = gccas
-USEDLIBS = asmparser bcwriter transforms analysis opt vmcore asmwriter support target
+USEDLIBS = asmparser bcwriter scalaropts transforms analysis opt vmcore asmwriter support target
include $(LEVEL)/Makefile.common
diff --git a/tools/gccas/gccas.cpp b/tools/gccas/gccas.cpp
index c5ab2df..376aff0 100644
--- a/tools/gccas/gccas.cpp
+++ b/tools/gccas/gccas.cpp
@@ -14,6 +14,7 @@
#include "llvm/Optimizations/ConstantProp.h"
#include "llvm/Optimizations/DCE.h"
#include "llvm/Transforms/ConstantMerge.h"
+#include "llvm/Transforms/Scalar/IndVarSimplify.h"
#include "llvm/Bytecode/Writer.h"
#include "Support/CommandLine.h"
#include <memory>
@@ -64,6 +65,7 @@ int main(int argc, char **argv) {
//
vector<Pass*> Passes;
Passes.push_back(new CleanupGCCOutput()); // Fix gccisms
+ Passes.push_back(new InductionVariableSimplify()); // Simplify indvars
Passes.push_back(new RaisePointerReferences()); // Fix general low level code
Passes.push_back(new ConstantMerge()); // Merge dup global constants