Mercurial > hg > CbC > CbC_llvm
comparison llvm/test/TableGen/SchedModelError.td @ 236:c4bab56944e8 llvm-original
LLVM 16
author | kono |
---|---|
date | Wed, 09 Nov 2022 17:45:10 +0900 |
parents | 1d019706d866 |
children |
comparison
equal
deleted
inserted
replaced
232:70dce7da266c | 236:c4bab56944e8 |
---|---|
2 | 2 |
3 include "llvm/Target/Target.td" | 3 include "llvm/Target/Target.td" |
4 | 4 |
5 def TestTarget : Target; | 5 def TestTarget : Target; |
6 | 6 |
7 // CHECK: [[FILE]]:[[@LINE+1]]:1: error: No schedule information for instruction 'TestInst' in SchedMachineModel 'TestSchedModel' | 7 // CHECK: [[FILE]]:[[@LINE+1]]:5: error: No schedule information for instruction 'TestInst' in SchedMachineModel 'TestSchedModel' |
8 def TestInst : Instruction { | 8 def TestInst : Instruction { |
9 let OutOperandList = (outs); | 9 let OutOperandList = (outs); |
10 let InOperandList = (ins); | 10 let InOperandList = (ins); |
11 bits<8> Inst = 0b00101010; | 11 bits<8> Inst = 0b00101010; |
12 } | 12 } |