diff options
Diffstat (limited to 'include/llvm')
-rw-r--r-- | include/llvm/Option/OptParser.td | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Option/OptParser.td b/include/llvm/Option/OptParser.td index e781fa0..394e0b6 100644 --- a/include/llvm/Option/OptParser.td +++ b/include/llvm/Option/OptParser.td @@ -14,10 +14,10 @@ // 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; } |