commit | e3b94d1b55a759010539051913a17b7970ee1ce6 | [log] [tgz] |
---|---|---|
author | Benjamin Kramer <benny.kra@googlemail.com> | Sun Nov 06 20:36:50 2011 +0000 |
committer | Benjamin Kramer <benny.kra@googlemail.com> | Sun Nov 06 20:36:50 2011 +0000 |
tree | c3752dcf2e9294a345512d9e43ddf397aa5deb13 | |
parent | 44f91da8cc7cc244d000fd93a3937ee49402ba7c [diff] [blame] |
Fix a typo. llvm-svn: 143890
diff --git a/llvm/lib/Support/StringRef.cpp b/llvm/lib/Support/StringRef.cpp index c78b6d0..e73c6e3 100644 --- a/llvm/lib/Support/StringRef.cpp +++ b/llvm/lib/Support/StringRef.cpp
@@ -152,7 +152,7 @@ std::string StringRef::upper() const { std::string Result(size(), char()); for (size_type i = 0, e = size(); i != e; ++i) { - Result[i] = ascii_tolower(Data[i]); + Result[i] = ascii_toupper(Data[i]); } return Result; }