OptParser.td: typo
authorHans Wennborg <hans@hanshq.net>
Wed, 17 Jul 2013 16:26:38 +0000 (16:26 +0000)
committerHans Wennborg <hans@hanshq.net>
Wed, 17 Jul 2013 16:26:38 +0000 (16:26 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186517 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Option/OptParser.td

index e781fa02d75bce3bad8c8b865cd092f48b49b0f6..394e0b6a4b0fd640005cc583020aa6e8a7436f51 100644 (file)
 
 // Define the kinds of options.
 
-class OptionKind<string name, int predecence = 0, bit sentinel = 0> {
+class OptionKind<string name, int precedence = 0, bit sentinel = 0> {
   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;
 }