mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-17 04:24:00 +00:00
Pass StringRef by value.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@86251 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -294,7 +294,7 @@ private:
|
||||
/// known to exist at the end of the the record.
|
||||
template<typename uintty>
|
||||
void EmitRecordWithAbbrevImpl(unsigned Abbrev, SmallVectorImpl<uintty> &Vals,
|
||||
const StringRef &Blob) {
|
||||
StringRef Blob) {
|
||||
const char *BlobData = Blob.data();
|
||||
unsigned BlobLen = (unsigned) Blob.size();
|
||||
unsigned AbbrevNo = Abbrev-bitc::FIRST_APPLICATION_ABBREV;
|
||||
@ -422,7 +422,7 @@ public:
|
||||
/// of the record.
|
||||
template<typename uintty>
|
||||
void EmitRecordWithBlob(unsigned Abbrev, SmallVectorImpl<uintty> &Vals,
|
||||
const StringRef &Blob) {
|
||||
StringRef Blob) {
|
||||
EmitRecordWithAbbrevImpl(Abbrev, Vals, Blob);
|
||||
}
|
||||
template<typename uintty>
|
||||
@ -435,7 +435,7 @@ public:
|
||||
/// that end with an array.
|
||||
template<typename uintty>
|
||||
void EmitRecordWithArray(unsigned Abbrev, SmallVectorImpl<uintty> &Vals,
|
||||
const StringRef &Array) {
|
||||
StringRef Array) {
|
||||
EmitRecordWithAbbrevImpl(Abbrev, Vals, Array);
|
||||
}
|
||||
template<typename uintty>
|
||||
|
Reference in New Issue
Block a user