Update clang to r339409b.
Change-Id: Ied8a188bb072c40035320acedc86164b66d920af
diff --git a/linux-x64/clang/include/llvm/TableGen/StringMatcher.h b/linux-x64/clang/include/llvm/TableGen/StringMatcher.h
index 09d2092..3aa3540 100644
--- a/linux-x64/clang/include/llvm/TableGen/StringMatcher.h
+++ b/linux-x64/clang/include/llvm/TableGen/StringMatcher.h
@@ -23,12 +23,11 @@
class raw_ostream;
-/// StringMatcher - Given a list of strings and code to execute when they match,
-/// output a simple switch tree to classify the input string.
+/// Given a list of strings and code to execute when they match, output a
+/// simple switch tree to classify the input string.
///
-/// If a match is found, the code in Vals[i].second is executed; control must
+/// If a match is found, the code in Matches[i].second is executed; control must
/// not exit this code fragment. If nothing matches, execution falls through.
-///
class StringMatcher {
public:
using StringPair = std::pair<std::string, std::string>;