summaryrefslogtreecommitdiffstats
path: root/src/lib/program.ld
diff options
context:
space:
mode:
authorPatrick Georgi <patrick@georgi-clan.de>2015-09-27 13:45:17 +0200
committerPatrick Georgi <pgeorgi@google.com>2015-09-28 09:36:50 +0000
commit9cc8e92b6c2445ef7664ba20d9cf94b49fdbb972 (patch)
treec459a78540a7211116d0bdfe5ee81fef6237fc8e /src/lib/program.ld
parentc159a0ec4a41a4243df60a1a94c1d4848f6492c5 (diff)
downloadcoreboot-9cc8e92b6c2445ef7664ba20d9cf94b49fdbb972.tar.gz
coreboot-9cc8e92b6c2445ef7664ba20d9cf94b49fdbb972.tar.bz2
coreboot-9cc8e92b6c2445ef7664ba20d9cf94b49fdbb972.zip
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/lib/program.ld')
-rw-r--r--src/lib/program.ld2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/program.ld b/src/lib/program.ld
index ab3623997c9f..4c242319fbd9 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);