mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-27 22:11:24 -04:00
27 lines
629 B
C
27 lines
629 B
C
$NetBSD$
|
|
|
|
--- gcc/testsuite/gcc.target/arm/neon-vset_lanes8.c.orig Wed May 21 19:48:58 2014
|
|
+++ gcc/testsuite/gcc.target/arm/neon-vset_lanes8.c
|
|
@@ -0,0 +1,21 @@
|
|
+/* Test the `vset_lane_s8' ARM Neon intrinsic. */
|
|
+
|
|
+/* { dg-do run } */
|
|
+/* { dg-require-effective-target arm_neon_hw } */
|
|
+/* { dg-options "-O0" } */
|
|
+/* { dg-add-options arm_neon } */
|
|
+
|
|
+#include "arm_neon.h"
|
|
+#include <stdlib.h>
|
|
+#include <string.h>
|
|
+
|
|
+int8x8_t x = { 1, 2, 3, 4, 5, 6, 7, 8 };
|
|
+int8x8_t y = { 1, 2, 3, 16, 5, 6, 7, 8 };
|
|
+
|
|
+int main (void)
|
|
+{
|
|
+ x = vset_lane_s8 (16, x, 3);
|
|
+ if (memcmp (&x, &y, sizeof (x)) != 0)
|
|
+ abort();
|
|
+ return 0;
|
|
+}
|