[ELF] - Fix build bot after rL327612.

Missed this one.

llvm-svn: 327616
This commit is contained in:
George Rimar 2018-03-15 09:40:25 +00:00
parent 4f9c7c5086
commit 211e94d666
1 changed files with 1 additions and 1 deletions

View File

@ -191,7 +191,7 @@ struct AssertCommand : BaseCommand {
// Represents BYTE(), SHORT(), LONG(), or QUAD().
struct ByteCommand : BaseCommand {
ByteCommand(Expr E, unsigned Size, std::string CommandString)
: BaseCommand(ByteKind), Expression(E), CommandString(CommandString),
: BaseCommand(ByteKind), CommandString(CommandString), Expression(E),
Size(Size) {}
static bool classof(const BaseCommand *C) { return C->Kind == ByteKind; }