Skip to content

Commit

Permalink
Fix the rebase
Browse files Browse the repository at this point in the history
Comment some TARGET_ macros that don't exist anymore
  • Loading branch information
antoyo committed Oct 2, 2024
1 parent c6682a8 commit 9cec8ab
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
10 changes: 6 additions & 4 deletions gcc/config/i386/i386-jit.cc
Original file line number Diff line number Diff line change
Expand Up @@ -107,12 +107,14 @@ ix86_jit_register_target_info (void)
jit_add_target_info("target_feature", "avx2");
if (TARGET_AVX512F)
jit_add_target_info("target_feature", "avx512f");
if (TARGET_AVX512ER)
jit_add_target_info("target_feature", "avx512er");
// TODO: update the name:
/*if (TARGET_AVX512ER)
jit_add_target_info("target_feature", "avx512er");*/
if (TARGET_AVX512CD)
jit_add_target_info("target_feature", "avx512cd");
if (TARGET_AVX512PF)
jit_add_target_info("target_feature", "avx512pf");
// TODO: update the name:
/*if (TARGET_AVX512PF)
jit_add_target_info("target_feature", "avx512pf");*/
if (TARGET_AVX512DQ)
jit_add_target_info("target_feature", "avx512dq");
if (TARGET_AVX512BW)
Expand Down
8 changes: 4 additions & 4 deletions gcc/jit/libgccjit.map
Original file line number Diff line number Diff line change
Expand Up @@ -375,11 +375,11 @@ LIBGCCJIT_ABI_42 {
gcc_jit_lvalue_remove;
} LIBGCCJIT_ABI_41;

LIBGCCJIT_ABI_42 {
LIBGCCJIT_ABI_43 {
global:
gcc_jit_rvalue_set_type;
} LIBGCCJIT_ABI_40;
} LIBGCCJIT_ABI_42;

LIBGCCJIT_ABI_42 {
LIBGCCJIT_ABI_44 {
gcc_jit_lvalue_add_attribute;
} LIBGCCJIT_ABI_41;
} LIBGCCJIT_ABI_43;

0 comments on commit 9cec8ab

Please sign in to comment.