Remove global std::string. NFC.

llvm-svn: 239254
This commit is contained in:
Benjamin Kramer 2015-06-07 16:36:28 +00:00
parent 19cefe6903
commit 82f865277e
1 changed files with 1 additions and 1 deletions

View File

@ -496,7 +496,7 @@ template <typename T> static void unique_unsorted(std::vector<T> &vec) {
}
}
static std::string GCSafepointPollName("gc.safepoint_poll");
static const char *const GCSafepointPollName = "gc.safepoint_poll";
static bool isGCSafepointPoll(Function &F) {
return F.getName().equals(GCSafepointPollName);