public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [PATCH, testsuite]: Improve gcc.target/i386/pr67609-2.c SSE2 runtime test
@ 2015-11-01 20:25 Uros Bizjak
  0 siblings, 0 replies; only message in thread
From: Uros Bizjak @ 2015-11-01 20:25 UTC (permalink / raw)
  To: gcc-patches; +Cc: Richard Henderson

[-- Attachment #1: Type: text/plain, Size: 323 bytes --]

Hello!

Attached patch improves pr67609-2.c testcase with the SSE2 runtime
test framework.

2015-11-01  Uros Bizjak  <ubizjak@gmail.com>

    * gcc.target/i386/pr67609-2.c: Include sse2-check.h.
    (sse2_test): Rename from main.  Do not return 0.

Tested on x86_64-linux-gnu {,-m32}  and committed to mainline SVN.

Uros.

[-- Attachment #2: t.diff.txt --]
[-- Type: text/plain, Size: 621 bytes --]

Index: gcc.target/i386/pr67609-2.c
===================================================================
--- gcc.target/i386/pr67609-2.c	(revision 229639)
+++ gcc.target/i386/pr67609-2.c	(working copy)
@@ -2,7 +2,8 @@
 /* { dg-options "-O2 -msse2" } */
 /* { dg-require-effective-target sse2 } */
 
-#include <stdlib.h>
+#include "sse2-check.h"
+
 #include <emmintrin.h>
 
 __m128d reg = { 2.0, 4.0 };
@@ -17,13 +18,11 @@ set_lower (double b)
   reg = _mm_load_pd(v);
 }
 
-int
-main ()
+static void
+sse2_test (void)
 {
   set_lower (6.0);
 
   if (reg[1] != 4.0)
-    abort ();
-
-  return 0;
+    __builtin_abort ();
 }

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2015-11-01 20:25 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-11-01 20:25 [PATCH, testsuite]: Improve gcc.target/i386/pr67609-2.c SSE2 runtime test Uros Bizjak

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).