https://sourceware.org/bugzilla/show_bug.cgi?id=32682
Bug ID: 32682
Summary: in configure, __asm__ should be used instead of asm
Product: elfutils
Version: unspecified
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: general
Assignee: unassigned at sourceware dot org
Reporter: lzsiga at freemail dot c3.hu
CC: elfutils-devel at sourceware dot org
Target Milestone: ---
Hi, I think, in configure, __asm__ should be used instead of asm
before:
#define NEW_VERSION(name, version) \
asm (".symver " #name "," #name "@@@" #version);
after:
#define NEW_VERSION(name, version) \
__asm__ (".symver " #name "," #name "@@@" #version);
--
You are receiving this mail because:
You are on the CC list for the bug.