mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-02 10:33:53 +00:00
Add isLittleEndianEncoding to InstrInfo class, defaults to `off'
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16976 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
28eefa5464
commit
99ee67ab19
@ -170,6 +170,12 @@ class InstrInfo {
|
||||
//
|
||||
list<string> TSFlagsFields = [];
|
||||
list<int> TSFlagsShifts = [];
|
||||
|
||||
// Target can specify its instructions in either big or little-endian formats.
|
||||
// For instance, while both Sparc and PowerPC are big-endian platforms, the
|
||||
// Sparc manual specifies its instructions in the format [31..0] (big), while
|
||||
// PowerPC specifies them using the format [0..31] (little).
|
||||
bit isLittleEndianEncoding = 0;
|
||||
}
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
Loading…
x
Reference in New Issue
Block a user