mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
ARMPseudoInst instructions should default to being considered a single 4-byte
instruction. Any that may be expanded otherwise by MC lowering should override this value. rdar://8683274 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@119713 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4229c62dcf
commit
056ab107ff
@ -249,6 +249,9 @@ class PseudoInst<dag oops, dag iops, InstrItinClass itin, list<dag> pattern>
|
|||||||
class ARMPseudoInst<dag oops, dag iops, InstrItinClass itin,
|
class ARMPseudoInst<dag oops, dag iops, InstrItinClass itin,
|
||||||
list<dag> pattern>
|
list<dag> pattern>
|
||||||
: PseudoInst<oops, iops, itin, pattern> {
|
: PseudoInst<oops, iops, itin, pattern> {
|
||||||
|
// Default these to 4byte size, as they're almost always expanded to a
|
||||||
|
// single instruction. Any exceptions can override the SZ field value.
|
||||||
|
let SZ = Size4Bytes;
|
||||||
list<Predicate> Predicates = [IsARM];
|
list<Predicate> Predicates = [IsARM];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user