Skip to content

Commit f710202

Browse files
nathanchanceIngo Molnar
authored andcommitted
x86/tools: Drop duplicate unlikely() definition in insn_decoder_test.c
After commit c104c16 ("Kunit to check the longest symbol length"), there is a warning when building with clang because there is now a definition of unlikely from compiler.h in tools/include/linux, which conflicts with the one in the instruction decoder selftest: arch/x86/tools/insn_decoder_test.c:15:9: warning: 'unlikely' macro redefined [-Wmacro-redefined] Remove the second unlikely() definition, as it is no longer necessary, clearing up the warning. Fixes: c104c16 ("Kunit to check the longest symbol length") Signed-off-by: Nathan Chancellor <nathan@kernel.org> Signed-off-by: Ingo Molnar <mingo@kernel.org> Acked-by: Shuah Khan <skhan@linuxfoundation.org> Link: https://lore.kernel.org/r/20250318-x86-decoder-test-fix-unlikely-redef-v1-1-74c84a7bf05b@kernel.org
1 parent b5322b6 commit f710202

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

arch/x86/tools/insn_decoder_test.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212
#include <stdarg.h>
1313
#include <linux/kallsyms.h>
1414

15-
#define unlikely(cond) (cond)
16-
1715
#include <asm/insn.h>
1816
#include <inat.c>
1917
#include <insn.c>

0 commit comments

Comments
 (0)