diff options
author | Nuno Lopes <nunoplopes@sapo.pt> | 2014-04-17 22:26:44 +0000 |
---|---|---|
committer | Nuno Lopes <nunoplopes@sapo.pt> | 2014-04-17 22:26:44 +0000 |
commit | 9ced19abe89a248963b629528ff3e0fee930ed98 (patch) | |
tree | 4a5433327c752b2d58e6f92f489a8ec02f0dea20 /llvm/utils/TableGen/AsmWriterEmitter.cpp | |
parent | 720c5ca4ea48348a3eb08dd7405b6096bb04e369 (diff) | |
download | bcm5719-llvm-9ced19abe89a248963b629528ff3e0fee930ed98.tar.gz bcm5719-llvm-9ced19abe89a248963b629528ff3e0fee930ed98.zip |
remove some dead code
lib/Analysis/IPA/InlineCost.cpp | 18 ------------------
lib/Analysis/RegionPass.cpp | 1 -
lib/Analysis/TypeBasedAliasAnalysis.cpp | 1 -
lib/Transforms/Scalar/LoopUnswitch.cpp | 21 ---------------------
lib/Transforms/Utils/LCSSA.cpp | 2 --
lib/Transforms/Utils/LoopSimplify.cpp | 6 ------
utils/TableGen/AsmWriterEmitter.cpp | 13 -------------
utils/TableGen/DFAPacketizerEmitter.cpp | 7 -------
utils/TableGen/IntrinsicEmitter.cpp | 2 --
9 files changed, 71 deletions(-)
llvm-svn: 206506
Diffstat (limited to 'llvm/utils/TableGen/AsmWriterEmitter.cpp')
-rw-r--r-- | llvm/utils/TableGen/AsmWriterEmitter.cpp | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/llvm/utils/TableGen/AsmWriterEmitter.cpp b/llvm/utils/TableGen/AsmWriterEmitter.cpp index 754b61ef3ff..718bb805fe4 100644 --- a/llvm/utils/TableGen/AsmWriterEmitter.cpp +++ b/llvm/utils/TableGen/AsmWriterEmitter.cpp @@ -709,19 +709,6 @@ public: return true; } - - bool operator()(const IAPrinter &RHS) { - if (Conds.size() < RHS.Conds.size()) - return true; - - unsigned Idx = 0; - for (std::vector<std::string>::iterator - I = Conds.begin(), E = Conds.end(); I != E; ++I) - if (*I != RHS.Conds[Idx++]) - return *I < RHS.Conds[Idx++]; - - return false; - } }; } // end anonymous namespace |