diff options
author | Chris Lattner <sabre@nondot.org> | 2009-11-04 23:20:12 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-11-04 23:20:12 +0000 |
commit | a09062758b088b01c69782566336800f46ff641f (patch) | |
tree | ebfc7249f2415ad5b4237842420b206baf71b966 /llvm/lib/Transforms/Scalar/JumpThreading.cpp | |
parent | b184f0d32ea3d5f29516b2da48ee0f4c5b572474 (diff) | |
download | bcm5719-llvm-a09062758b088b01c69782566336800f46ff641f.tar.gz bcm5719-llvm-a09062758b088b01c69782566336800f46ff641f.zip |
improve DSE when TargetData is not around, based on work by
Hans Wennborg!
llvm-svn: 86067
Diffstat (limited to 'llvm/lib/Transforms/Scalar/JumpThreading.cpp')
-rw-r--r-- | llvm/lib/Transforms/Scalar/JumpThreading.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/llvm/lib/Transforms/Scalar/JumpThreading.cpp b/llvm/lib/Transforms/Scalar/JumpThreading.cpp index 8b11edd891f..10c9ec6d5a4 100644 --- a/llvm/lib/Transforms/Scalar/JumpThreading.cpp +++ b/llvm/lib/Transforms/Scalar/JumpThreading.cpp @@ -68,9 +68,6 @@ namespace { static char ID; // Pass identification JumpThreading() : FunctionPass(&ID) {} - virtual void getAnalysisUsage(AnalysisUsage &AU) const { - } - bool runOnFunction(Function &F); void FindLoopHeaders(Function &F); |