diff options
Diffstat (limited to 'llvm/tools/llvm-objdump/llvm-objdump.cpp')
-rw-r--r-- | llvm/tools/llvm-objdump/llvm-objdump.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/llvm/tools/llvm-objdump/llvm-objdump.cpp b/llvm/tools/llvm-objdump/llvm-objdump.cpp index 6719aed..a1c37bc 100644 --- a/llvm/tools/llvm-objdump/llvm-objdump.cpp +++ b/llvm/tools/llvm-objdump/llvm-objdump.cpp @@ -341,16 +341,6 @@ static StringSet<> DisasmFuncsSet; StringSet<> FoundSectionSet; static StringRef ToolName; -static bool operator<(const SymbolInfoTy& P1 ,const SymbolInfoTy& P2) { - if (P1.Addr < P2.Addr) - return true; - - if (P1.Addr == P2.Addr) - return P1.Name < P2.Name; - - return false; -} - namespace { struct FilterResult { // True if the section should not be skipped. |