forked from OSchip/llvm-project
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 llvm-svn: 119713
This commit is contained in:
parent
5a1a2d53de
commit
51fdc47a11
|
@ -249,6 +249,9 @@ class PseudoInst<dag oops, dag iops, InstrItinClass itin, list<dag> pattern>
|
|||
class ARMPseudoInst<dag oops, dag iops, InstrItinClass itin,
|
||||
list<dag> 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];
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue