From 5ed31e2f5819f5fc7e5b7a55bcdb104531a98b70 Mon Sep 17 00:00:00 2001 From: George Rimar Date: Wed, 4 May 2016 15:04:08 +0000 Subject: [PATCH] Removed another dead code. NFC. llvm-svn: 268505 --- lld/ELF/LinkerScript.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/lld/ELF/LinkerScript.h b/lld/ELF/LinkerScript.h index 27abb4252e40..95f9f1359030 100644 --- a/lld/ELF/LinkerScript.h +++ b/lld/ELF/LinkerScript.h @@ -32,9 +32,6 @@ struct SectionRule { SectionRule(StringRef D, StringRef S) : Dest(D), SectionPattern(S) {} - // Returns true if S should be in Dest section. - template bool match(InputSectionBase *S); - StringRef Dest; StringRef SectionPattern;