diff options
author | Nathan Hawes <nhawes@apple.com> | 2017-08-24 21:20:41 +0000 |
---|---|---|
committer | Nathan Hawes <nhawes@apple.com> | 2017-08-24 21:20:41 +0000 |
commit | 9b656ffbef199c6d76ceff7fd3a99e4f79b31873 (patch) | |
tree | fe6474beb3d77c35d519a3460ee904149f53efdf | |
parent | 8bee41e423ae67da0c26f593b3e946ddc136db99 (diff) | |
download | bcm5719-llvm-9b656ffbef199c6d76ceff7fd3a99e4f79b31873.tar.gz bcm5719-llvm-9b656ffbef199c6d76ceff7fd3a99e4f79b31873.zip |
test commit: fix typo in comment
llvm-svn: 311701
-rw-r--r-- | llvm/lib/Option/OptTable.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Option/OptTable.cpp b/llvm/lib/Option/OptTable.cpp index 7910bea0dcc..4e3b132db86 100644 --- a/llvm/lib/Option/OptTable.cpp +++ b/llvm/lib/Option/OptTable.cpp @@ -34,7 +34,7 @@ namespace llvm { namespace opt { // Ordering on Info. The ordering is *almost* case-insensitive lexicographic, -// with an exceptions. '\0' comes at the end of the alphabet instead of the +// with an exception. '\0' comes at the end of the alphabet instead of the // beginning (thus options precede any other options which prefix them). static int StrCmpOptionNameIgnoreCase(const char *A, const char *B) { const char *X = A, *Y = B; |