diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-11-19 18:22:16 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-11-19 18:22:16 +0000 |
commit | a627ef57ec0a0652bd5922fb86568b43f94d9361 (patch) | |
tree | c2a819507f61119a13346a67dfa2631eb26e84de /utils | |
parent | eeebecfcb4156319899c8dc63cd28c05f313538b (diff) | |
download | external_llvm-a627ef57ec0a0652bd5922fb86568b43f94d9361.zip external_llvm-a627ef57ec0a0652bd5922fb86568b43f94d9361.tar.gz external_llvm-a627ef57ec0a0652bd5922fb86568b43f94d9361.tar.bz2 |
TableGen/OptParser: When ordering options, make "sentinel" options appear before
everything else.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@89368 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r-- | utils/TableGen/OptParserEmitter.cpp | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/utils/TableGen/OptParserEmitter.cpp b/utils/TableGen/OptParserEmitter.cpp index a09ba08..ce1aef5 100644 --- a/utils/TableGen/OptParserEmitter.cpp +++ b/utils/TableGen/OptParserEmitter.cpp @@ -35,9 +35,16 @@ static int CompareOptionRecords(const void *Av, const void *Bv) { const Record *A = *(Record**) Av; const Record *B = *(Record**) Bv; - // Compare options by name first. - if (int Cmp = StrCmpOptionName(A->getValueAsString("Name").c_str(), - B->getValueAsString("Name").c_str())) + // Sentinel options preceed all others and are only ordered by precedence. + bool ASent = A->getValueAsDef("Kind")->getValueAsBit("Sentinel"); + bool BSent = B->getValueAsDef("Kind")->getValueAsBit("Sentinel"); + if (ASent != BSent) + return ASent ? -1 : 1; + + // Compare options by name, unless they are sentinels. + if (!ASent) + if (int Cmp = StrCmpOptionName(A->getValueAsString("Name").c_str(), + B->getValueAsString("Name").c_str())) return Cmp; // Then by the kind precedence; |