Minor simplifications.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92390 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Mikhail Glushenkov 2010-01-01 03:50:51 +00:00
parent 163dd597c9
commit 3a481e38c9
2 changed files with 2 additions and 3 deletions

View File

@ -97,11 +97,10 @@ def Preprocess : OptionPreprocessor<
(unset_option ["O0", "O1", "O2"]),
(and (switch_on "O2"), (any_switch_on ["O0", "O1"])),
(unset_option ["O0", "O1"]),
(and (switch_on "O1"), (switch_on "O0")),
(switch_on ["O1", "O0"]),
(unset_option "O0"))
>;
// Tools
class llvm_gcc_based <string cmd_prefix, string in_lang, string E_ext> : Tool<

View File

@ -1240,7 +1240,7 @@ bool EmitCaseTest1ArgList(const std::string& TestName,
const DagInit& d,
const OptionDescriptions& OptDescs,
raw_ostream& O) {
const ListInit& L = *static_cast<ListInit*>(d.getArg(0));
const ListInit& L = InitPtrToList(d.getArg(0));
if (TestName == "any_switch_on") {
EmitListTest(L, "||", EmitSwitchOn(OptDescs), O);