diff options
-rw-r--r-- | llvm/include/llvm/MC/MCInst.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/include/llvm/MC/MCInst.h b/llvm/include/llvm/MC/MCInst.h index 8df8096bba9..360dbda58fc 100644 --- a/llvm/include/llvm/MC/MCInst.h +++ b/llvm/include/llvm/MC/MCInst.h @@ -157,13 +157,14 @@ public: /// instruction. class MCInst { unsigned Opcode = 0; - SMLoc Loc; - SmallVector<MCOperand, 8> Operands; // These flags could be used to pass some info from one target subcomponent // to another, for example, from disassembler to asm printer. The values of // the flags have any sense on target level only (e.g. prefixes on x86). unsigned Flags = 0; + SMLoc Loc; + SmallVector<MCOperand, 8> Operands; + public: MCInst() = default; |