We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57338f7 commit bb9fe7dCopy full SHA for bb9fe7d
gcc/config/i386/i386-jit.cc
@@ -191,6 +191,14 @@ ix86_jit_register_target_info (void)
191
jit_add_target_info("target_feature", "fma4");
192
if (TARGET_XOP)
193
jit_add_target_info("target_feature", "xop");
194
+ if (TARGET_AVXIFMA)
195
+ jit_add_target_info("target_feature", "avxifma");
196
+ if (TARGET_AVXNECONVERT)
197
+ jit_add_target_info("target_feature", "avxneconvert");
198
+ if (TARGET_AVXVNNIINT8)
199
+ jit_add_target_info("target_feature", "avxvnniint8");
200
+ if (TARGET_AVXVNNIINT16)
201
+ jit_add_target_info("target_feature", "avxvnniint16");
202
203
// this is only enabled by choice in llvm, never by default - TODO determine if gcc enables it
204
// jit_add_target_info("target_feature", "sse-unaligned-mem");
0 commit comments