Save a std::string.

The group names are always symbol names, so we can use a StringRef.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@233545 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Rafael Espindola
2015-03-30 13:59:06 +00:00
parent 5738b77176
commit fd45ac4635
2 changed files with 14 additions and 11 deletions

View File

@@ -164,7 +164,7 @@ namespace llvm {
struct ELFSectionKey {
std::string SectionName;
std::string GroupName;
StringRef GroupName;
ELFSectionKey(StringRef SectionName, StringRef GroupName)
: SectionName(SectionName), GroupName(GroupName) {}
bool operator<(const ELFSectionKey &Other) const {
@@ -176,7 +176,7 @@ namespace llvm {
struct COFFSectionKey {
std::string SectionName;
std::string GroupName;
StringRef GroupName;
int SelectionKey;
COFFSectionKey(StringRef SectionName, StringRef GroupName,
int SelectionKey)