From: Hans Wennborg Date: Wed, 17 Jul 2013 16:26:38 +0000 (+0000) Subject: OptParser.td: typo X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=b895d1775e2c7405263fcda98c6abc8c8f1b9bec;p=oota-llvm.git OptParser.td: typo git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186517 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Option/OptParser.td b/include/llvm/Option/OptParser.td index e781fa02d75..394e0b6a4b0 100644 --- a/include/llvm/Option/OptParser.td +++ b/include/llvm/Option/OptParser.td @@ -14,10 +14,10 @@ // Define the kinds of options. -class OptionKind { +class OptionKind { string Name = name; // The kind precedence, kinds with lower precedence are matched first. - int Precedence = predecence; + int Precedence = precedence; // Indicate a sentinel option. bit Sentinel = sentinel; }