mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-08 21:32:39 +00:00
Minor simplifications.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92390 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
163dd597c9
commit
3a481e38c9
@ -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<
|
||||
|
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user