[lld] r327616 - [ELF] - Fix build bot after rL327612.
George Rimar via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 15 02:40:25 PDT 2018
Author: grimar
Date: Thu Mar 15 02:40:25 2018
New Revision: 327616
URL: http://llvm.org/viewvc/llvm-project?rev=327616&view=rev
Log:
[ELF] - Fix build bot after rL327612.
Missed this one.
Modified:
lld/trunk/ELF/LinkerScript.h
Modified: lld/trunk/ELF/LinkerScript.h
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/ELF/LinkerScript.h?rev=327616&r1=327615&r2=327616&view=diff
==============================================================================
--- lld/trunk/ELF/LinkerScript.h (original)
+++ lld/trunk/ELF/LinkerScript.h Thu Mar 15 02:40:25 2018
@@ -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; }
More information about the llvm-commits
mailing list