summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorPeter Collingbourne <peter@pcc.me.uk>2013-10-20 03:19:25 +0000
committerPeter Collingbourne <peter@pcc.me.uk>2013-10-20 03:19:25 +0000
commit8f70847f98925153ad48fdeea1a8e72ee08d78eb (patch)
treee2c9f4abda4653cd642653c7642708a277ceb488 /utils
parent0abc36205a39f3791342165502478bb51fe67f05 (diff)
downloadllvm-8f70847f98925153ad48fdeea1a8e72ee08d78eb.tar.gz
llvm-8f70847f98925153ad48fdeea1a8e72ee08d78eb.tar.bz2
llvm-8f70847f98925153ad48fdeea1a8e72ee08d78eb.tar.xz
Typo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193043 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r--utils/TableGen/OptParserEmitter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/TableGen/OptParserEmitter.cpp b/utils/TableGen/OptParserEmitter.cpp
index cff004f569..9c4daaf774 100644
--- a/utils/TableGen/OptParserEmitter.cpp
+++ b/utils/TableGen/OptParserEmitter.cpp
@@ -79,7 +79,7 @@ static int CompareOptionRecords(Record *const *Av, Record *const *Bv) {
if (APrec == BPrec &&
A->getValueAsListOfStrings("Prefixes") ==
B->getValueAsListOfStrings("Prefixes")) {
- PrintError(A->getLoc(), Twine("Option is equivilent to"));
+ PrintError(A->getLoc(), Twine("Option is equivalent to"));
PrintError(B->getLoc(), Twine("Other defined here"));
PrintFatalError("Equivalent Options found.");
}