aboutsummaryrefslogtreecommitdiffstats
path: root/lib/MC/MCSectionELF.cpp
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-11-06 10:58:06 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-11-06 10:58:06 +0000
commitde46a5b60ea8cf3db0b613172667a7038470c578 (patch)
tree0c5a62b287e4c2c693330584a8f1d6024defde66 /lib/MC/MCSectionELF.cpp
parentd71e0318a7639a78ea87cc0f6eabf13358fd4c9e (diff)
downloadexternal_llvm-de46a5b60ea8cf3db0b613172667a7038470c578.zip
external_llvm-de46a5b60ea8cf3db0b613172667a7038470c578.tar.gz
external_llvm-de46a5b60ea8cf3db0b613172667a7038470c578.tar.bz2
Pass StringRef by value.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@86251 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/MC/MCSectionELF.cpp')
-rw-r--r--lib/MC/MCSectionELF.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/MC/MCSectionELF.cpp b/lib/MC/MCSectionELF.cpp
index 660a8c9..c6812ed 100644
--- a/lib/MC/MCSectionELF.cpp
+++ b/lib/MC/MCSectionELF.cpp
@@ -15,7 +15,7 @@
using namespace llvm;
MCSectionELF *MCSectionELF::
-Create(const StringRef &Section, unsigned Type, unsigned Flags,
+Create(StringRef Section, unsigned Type, unsigned Flags,
SectionKind K, bool isExplicit, MCContext &Ctx) {
return new (Ctx) MCSectionELF(Section, Type, Flags, K, isExplicit);
}