[profile] Update a warning message (NFC)

It's possible for a merge pool specifier to appear anywhere in a
filename pattern. Update the warning to reflect this.

llvm-svn: 272685
This commit is contained in:
Vedant Kumar 2016-06-14 17:23:13 +00:00
parent 4ecab84364
commit 8e2dd518af
1 changed files with 2 additions and 3 deletions

View File

@ -288,9 +288,8 @@ static int parseFilenamePattern(const char *FilenamePat) {
}
} else if (containsMergeSpecifier(FilenamePat, I)) {
if (MergingEnabled) {
PROF_WARN(
"%%m specifier can only be specified once at the end of %s.\n",
FilenamePat);
PROF_WARN("%%m specifier can only be specified once in %s.\n",
FilenamePat);
return -1;
}
MergingEnabled = 1;