mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-10 18:26:02 +00:00
Shorten AsmPrinterFlags filed to accomodate for future Flags field
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@127097 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -53,10 +53,10 @@ public:
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
const TargetInstrDesc *TID; // Instruction descriptor.
|
const TargetInstrDesc *TID; // Instruction descriptor.
|
||||||
unsigned short NumImplicitOps; // Number of implicit operands (which
|
uint16_t NumImplicitOps; // Number of implicit operands (which
|
||||||
// are determined at construction time).
|
// are determined at construction time).
|
||||||
|
|
||||||
unsigned short AsmPrinterFlags; // Various bits of information used by
|
uint8_t AsmPrinterFlags; // Various bits of information used by
|
||||||
// the AsmPrinter to emit helpful
|
// the AsmPrinter to emit helpful
|
||||||
// comments. This is *not* semantic
|
// comments. This is *not* semantic
|
||||||
// information. Do not use this for
|
// information. Do not use this for
|
||||||
@@ -125,7 +125,7 @@ public:
|
|||||||
|
|
||||||
/// getAsmPrinterFlags - Return the asm printer flags bitvector.
|
/// getAsmPrinterFlags - Return the asm printer flags bitvector.
|
||||||
///
|
///
|
||||||
unsigned short getAsmPrinterFlags() const { return AsmPrinterFlags; }
|
uint8_t getAsmPrinterFlags() const { return AsmPrinterFlags; }
|
||||||
|
|
||||||
/// clearAsmPrinterFlags - clear the AsmPrinter bitvector
|
/// clearAsmPrinterFlags - clear the AsmPrinter bitvector
|
||||||
///
|
///
|
||||||
|
Reference in New Issue
Block a user