diff options
author | Meador Inge <meadori@codesourcery.com> | 2013-03-21 02:44:07 +0000 |
---|---|---|
committer | Meador Inge <meadori@codesourcery.com> | 2013-03-21 02:44:07 +0000 |
commit | cf691565ed7e36956572828bb3023a9830b0900d (patch) | |
tree | 95b3eb1e6387ce3870d3f7a373809e5a82b0753b /llvm/lib/Transforms/Scalar/SimplifyLibCalls.cpp | |
parent | 0339a64a40e5b0a48398382a6523545f142cf3a1 (diff) | |
download | bcm5719-llvm-cf691565ed7e36956572828bb3023a9830b0900d.tar.gz bcm5719-llvm-cf691565ed7e36956572828bb3023a9830b0900d.zip |
simplify-libcalls: Removed unused variable
The 'Modified' variable should have been removed from SimplifyLibCalls
in r177619, but was missed. This commit removes it.
llvm-svn: 177622
Diffstat (limited to 'llvm/lib/Transforms/Scalar/SimplifyLibCalls.cpp')
-rw-r--r-- | llvm/lib/Transforms/Scalar/SimplifyLibCalls.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/Scalar/SimplifyLibCalls.cpp b/llvm/lib/Transforms/Scalar/SimplifyLibCalls.cpp index cbef92bcf10..3514e6c2aad 100644 --- a/llvm/lib/Transforms/Scalar/SimplifyLibCalls.cpp +++ b/llvm/lib/Transforms/Scalar/SimplifyLibCalls.cpp @@ -89,8 +89,6 @@ namespace { TargetLibraryInfo *TLI; StringMap<LibCallOptimization*> Optimizations; - - bool Modified; // This is only used by doInitialization. public: static char ID; // Pass identification SimplifyLibCalls() : FunctionPass(ID) { |