comparison llvm/test/TableGen/AsmPredicateCondsEmission.td @ 173:0572611fdcc8 llvm10 llvm12

reorgnization done
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 11:55:54 +0900
parents 1d019706d866
children
comparison
equal deleted inserted replaced
172:9fbae9c8bf63 173:0572611fdcc8
10 10
11 def arch : Target { 11 def arch : Target {
12 let InstructionSet = archInstrInfo; 12 let InstructionSet = archInstrInfo;
13 } 13 }
14 14
15 def AssemblerCondition2 : SubtargetFeature<"cond2", "cond2", "true", "">;
15 def Pred1 : Predicate<"Condition1">; 16 def Pred1 : Predicate<"Condition1">;
16 def Pred2 : Predicate<"Condition2">, 17 def Pred2 : Predicate<"Condition2">,
17 AssemblerPredicate<"AssemblerCondition2">; 18 AssemblerPredicate<(all_of AssemblerCondition2)>;
18 19
19 def foo : Instruction { 20 def foo : Instruction {
20 let Size = 2; 21 let Size = 2;
21 let OutOperandList = (outs); 22 let OutOperandList = (outs);
22 let InOperandList = (ins); 23 let InOperandList = (ins);