diff options
author | Sebastian Pop <spop@codeaurora.org> | 2012-02-06 05:29:29 +0000 |
---|---|---|
committer | Sebastian Pop <spop@codeaurora.org> | 2012-02-06 05:29:29 +0000 |
commit | bbb8eb58f98b382d51e33e1dc7fda58dea8f728a (patch) | |
tree | f6a62c4effb247000b0c4a3878b7d9659b5fcfc6 | |
parent | 5b5935d17db2d9b27b99d89f702986d8b9247a96 (diff) | |
download | bcm5719-llvm-bbb8eb58f98b382d51e33e1dc7fda58dea8f728a.tar.gz bcm5719-llvm-bbb8eb58f98b382d51e33e1dc7fda58dea8f728a.zip |
fix typo
llvm-svn: 149856
-rw-r--r-- | llvm/lib/Support/JSONParser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Support/JSONParser.cpp b/llvm/lib/Support/JSONParser.cpp index 0832ec326df..5dfcf297a7e 100644 --- a/llvm/lib/Support/JSONParser.cpp +++ b/llvm/lib/Support/JSONParser.cpp @@ -29,7 +29,7 @@ JSONParser::JSONParser(StringRef Input, SourceMgr *SM) JSONValue *JSONParser::parseRoot() { if (Position != InputBuffer->getBuffer().begin()) - report_fatal_error("Cannot resuse JSONParser."); + report_fatal_error("Cannot reuse JSONParser."); if (isWhitespace()) nextNonWhitespace(); if (errorIfAtEndOfFile("'[' or '{' at start of JSON text")) |