mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-12 02:47:10 +00:00
[ELF] - Fix build bot after rL327612.
Error was: error: field 'Size' will be initialized after field 'CommandString' [-Werror,-Wreorder] llvm-svn: 327613
This commit is contained in:
parent
84bcabcb86
commit
61a1f50b39
@ -191,8 +191,8 @@ struct AssertCommand : BaseCommand {
|
||||
// Represents BYTE(), SHORT(), LONG(), or QUAD().
|
||||
struct ByteCommand : BaseCommand {
|
||||
ByteCommand(Expr E, unsigned Size, std::string CommandString)
|
||||
: BaseCommand(ByteKind), Expression(E), Size(Size),
|
||||
CommandString(CommandString) {}
|
||||
: BaseCommand(ByteKind), Expression(E), CommandString(CommandString),
|
||||
Size(Size) {}
|
||||
|
||||
static bool classof(const BaseCommand *C) { return C->Kind == ByteKind; }
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user