]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
tree-optimization/110381 - fix testcase
authorRichard Biener <rguenther@suse.de>
Fri, 30 Jun 2023 06:34:24 +0000 (08:34 +0200)
committerRichard Biener <rguenther@suse.de>
Fri, 30 Jun 2023 06:35:31 +0000 (08:35 +0200)
This adds a missing check_vect () to the execute testcase.

PR tree-optimization/110381
* gcc.dg/vect/pr110381.c: Add check_vect ().

gcc/testsuite/gcc.dg/vect/pr110381.c

index 2313dbf11caec87d465f7ce35820933be9f2c64f..dc8c6a8f68303082e9b3d53afa536534a72e1f6a 100644 (file)
@@ -1,5 +1,7 @@
 /* { dg-do run } */
 
+#include "tree-vect.h"
+
 struct FOO {
    double a;
    double b;
@@ -29,6 +31,8 @@ int main()
 {
   struct FOO foos[8];
 
+  check_vect ();
+
   __builtin_memset (foos, 0, sizeof (foos));
   foos[0].a = __DBL_MAX__;
   foos[0].b = 5;