[PATCH] D72444: [ARM,MVE] Fix valid immediate range for vsliq_n.

Dave Green via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Thu Jan 9 05:50:10 PST 2020


dmgreen accepted this revision.
dmgreen added a comment.
This revision is now accepted and ready to land.

Nice test. LGTM



================
Comment at: clang/test/Sema/arm-mve-immediates.c:182
+
+  vshrq(vb, 0); // expected-error {{argument value 0 is outside the valid range [1, 8]}}
+  vshrq(vb, 9); // expected-error {{argument value 9 is outside the valid range [1, 8]}}
----------------
This set is repeated from above?


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D72444/new/

https://reviews.llvm.org/D72444





More information about the cfe-commits mailing list