Clang may decide to inline some functions that have inline asm with labels. Doing this duplicates the labels, causing the assembler to be complain. These patches add the "noinline" attribute to the functions to prevent this. v2: Combine "libcflat.h" change and use the new "noinline" macro. Bill Wendling (5): libcflag: define the "noinline" macro x86: realmode: mark exec_in_big_real_mode as noinline x86: svm: mark test_run as noinline x86: umip: mark do_ring3 as noinline x86: vmx: mark some test_* functions as noinline lib/libcflat.h | 1 + x86/pmu_lbr.c | 4 ++-- x86/realmode.c | 2 +- x86/svm.c | 2 +- x86/umip.c | 2 +- x86/vmx.c | 6 +++--- 6 files changed, 9 insertions(+), 8 deletions(-) -- 2.33.0.309.g3052b89438-goog