Browse Source

Disallow any vector, not just V, when no __int128 type is present

pull/1701/head
Jerry Zhao 2 years ago
parent
commit
9f5df7f4db
  1. 2
      riscv/processor.cc

2
riscv/processor.cc

@ -44,7 +44,7 @@ processor_t::processor_t(const isa_parser_t *isa, const cfg_t *cfg,
TM.proc = this;
#ifndef HAVE_INT128
if (isa->extension_enabled('V')) {
if (isa->has_any_vector()) {
fprintf(stderr, "V extension is not supported on platforms without __int128 type\n");
abort();
}

Loading…
Cancel
Save