Skip to content

Commit 1a77466

Browse files
committedJul 28, 2017
[build] Fix use of inline assembly on GCC 4.8 ARM64 builds
The inline assembly used in include/errno.h to generate the einfo blocks requires the ability to generate an immediate constant with no immediate-value prefix (such as the dollar sign for x86 assembly). We currently achieve this via the undocumented "%c0" form of operand. This causes an "invalid operand prefix" error on GCC 4.8 for ARM64 builds. Fix by switching to the equally undocumented "%a0" form of operand, which appears to work correctly on all tested versions of GCC. Reported-by: Benjamin S. Allen <bsallen@alcf.anl.gov> Signed-off-by: Michael Brown <mcb30@ipxe.org>
1 parent b6fc8be commit 1a77466

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/include/errno.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -262,10 +262,10 @@ static inline void eplatform_discard ( int dummy __unused, ... ) {}
262262
".align 8\n\t" \
263263
"\n1:\n\t" \
264264
".long ( 4f - 1b )\n\t" \
265-
".long %c0\n\t" \
265+
".long %a0\n\t" \
266266
".long ( 2f - 1b )\n\t" \
267267
".long ( 3f - 1b )\n\t" \
268-
".long %c1\n\t" \
268+
".long %a1\n\t" \
269269
"\n2:\t.asciz \"" __einfo_desc ( einfo ) "\"\n\t" \
270270
"\n3:\t.asciz \"" __FILE__ "\"\n\t" \
271271
".align 8\n\t" \

0 commit comments

Comments
 (0)