From 211e94d6666d5e1bb5c4e622d6054270927b0ebe Mon Sep 17 00:00:00 2001 From: George Rimar Date: Thu, 15 Mar 2018 09:40:25 +0000 Subject: [PATCH] [ELF] - Fix build bot after rL327612. Missed this one. llvm-svn: 327616 --- lld/ELF/LinkerScript.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lld/ELF/LinkerScript.h b/lld/ELF/LinkerScript.h index dc54061..4c22303 100644 --- a/lld/ELF/LinkerScript.h +++ b/lld/ELF/LinkerScript.h @@ -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; } -- 2.7.4