2015-06-21 13:59:01 +00:00
|
|
|
//===-- StringSaver.cpp ---------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Support/StringSaver.h"
|
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
2017-01-02 19:17:04 +00:00
|
|
|
StringRef StringSaver::save(StringRef S) {
|
2015-06-21 13:59:01 +00:00
|
|
|
char *P = Alloc.Allocate<char>(S.size() + 1);
|
|
|
|
memcpy(P, S.data(), S.size());
|
|
|
|
P[S.size()] = '\0';
|
2017-01-02 19:17:04 +00:00
|
|
|
return StringRef(P, S.size());
|
2015-06-21 13:59:01 +00:00
|
|
|
}
|