diff options
author | Patrick Georgi <patrick@georgi-clan.de> | 2015-09-27 13:45:17 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2015-09-28 09:36:50 +0000 |
commit | 9cc8e92b6c2445ef7664ba20d9cf94b49fdbb972 (patch) | |
tree | c459a78540a7211116d0bdfe5ee81fef6237fc8e /src | |
parent | c159a0ec4a41a4243df60a1a94c1d4848f6492c5 (diff) | |
download | coreboot-9cc8e92b6c2445ef7664ba20d9cf94b49fdbb972.tar.xz |
program.ld: terminate ALIGN statement
This fixes building with CONFIG_COVERAGE=y
Change-Id: I5128ae0ef0d4f71e3ede7bcb3ee7ed7e265d1bb7
Signed-off-by: Patrick Georgi <patrick@georgi-clan.de>
Reviewed-on: http://review.coreboot.org/11729
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/program.ld | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/program.ld b/src/lib/program.ld index ab3623997c..4c242319fb 100644 --- a/src/lib/program.ld +++ b/src/lib/program.ld @@ -69,7 +69,7 @@ #if ENV_RAMSTAGE && IS_ENABLED(CONFIG_COVERAGE) .ctors . : { - . = ALIGN(0x100) + . = ALIGN(0x100); __CTOR_LIST__ = .; KEEP(*(.ctors)); LONG(0); |