Skip to content

Commit 70075e3

Browse files
committed
s390/bug: Add missing alignment
All objects are supposed to have a minimal alignment of two, since a couple of instructions only work with even addresses. Add the missing align statement for the file string. Fixes: 6584ff2 ("bugs/s390: Use 'cond_str' in __EMIT_BUG()") Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
1 parent 1a82d43 commit 70075e3

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

  • arch/s390/include/asm

arch/s390/include/asm/bug.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
#else
1212
#define __BUGVERBOSE_LOCATION(file, line) \
1313
.pushsection .rodata.str, "aMS", @progbits, 1; \
14+
.align 2; \
1415
10002: .ascii file "\0"; \
1516
.popsection; \
1617
\

0 commit comments

Comments
 (0)