Skip to content

Commit 9cec8ab

Browse files
committed
Fix the rebase
Comment some TARGET_ macros that don't exist anymore
1 parent c6682a8 commit 9cec8ab

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

gcc/config/i386/i386-jit.cc

+6-4
Original file line numberDiff line numberDiff line change
@@ -107,12 +107,14 @@ ix86_jit_register_target_info (void)
107107
jit_add_target_info("target_feature", "avx2");
108108
if (TARGET_AVX512F)
109109
jit_add_target_info("target_feature", "avx512f");
110-
if (TARGET_AVX512ER)
111-
jit_add_target_info("target_feature", "avx512er");
110+
// TODO: update the name:
111+
/*if (TARGET_AVX512ER)
112+
jit_add_target_info("target_feature", "avx512er");*/
112113
if (TARGET_AVX512CD)
113114
jit_add_target_info("target_feature", "avx512cd");
114-
if (TARGET_AVX512PF)
115-
jit_add_target_info("target_feature", "avx512pf");
115+
// TODO: update the name:
116+
/*if (TARGET_AVX512PF)
117+
jit_add_target_info("target_feature", "avx512pf");*/
116118
if (TARGET_AVX512DQ)
117119
jit_add_target_info("target_feature", "avx512dq");
118120
if (TARGET_AVX512BW)

gcc/jit/libgccjit.map

+4-4
Original file line numberDiff line numberDiff line change
@@ -375,11 +375,11 @@ LIBGCCJIT_ABI_42 {
375375
gcc_jit_lvalue_remove;
376376
} LIBGCCJIT_ABI_41;
377377

378-
LIBGCCJIT_ABI_42 {
378+
LIBGCCJIT_ABI_43 {
379379
global:
380380
gcc_jit_rvalue_set_type;
381-
} LIBGCCJIT_ABI_40;
381+
} LIBGCCJIT_ABI_42;
382382

383-
LIBGCCJIT_ABI_42 {
383+
LIBGCCJIT_ABI_44 {
384384
gcc_jit_lvalue_add_attribute;
385-
} LIBGCCJIT_ABI_41;
385+
} LIBGCCJIT_ABI_43;

0 commit comments

Comments
 (0)