[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:
George Rimar 2018-03-15 09:24:51 +00:00
parent 84bcabcb86
commit 61a1f50b39

View File

@ -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; }