aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Option
diff options
context:
space:
mode:
authorHans Wennborg <hans@hanshq.net>2013-07-17 16:26:38 +0000
committerHans Wennborg <hans@hanshq.net>2013-07-17 16:26:38 +0000
commitb895d1775e2c7405263fcda98c6abc8c8f1b9bec (patch)
tree3601b515f8a85ca70d7f57561b57fb068df3fc09 /include/llvm/Option
parentfce9279ac0265fd5ea637dd30253bad26f4273da (diff)
downloadexternal_llvm-b895d1775e2c7405263fcda98c6abc8c8f1b9bec.zip
external_llvm-b895d1775e2c7405263fcda98c6abc8c8f1b9bec.tar.gz
external_llvm-b895d1775e2c7405263fcda98c6abc8c8f1b9bec.tar.bz2
OptParser.td: typo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186517 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Option')
-rw-r--r--include/llvm/Option/OptParser.td4
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;
}