testsuite/98224 - un-XFAIL Walloca-2.c on ilp32
authorRichard Biener <rguenther@suse.de>
Thu, 21 Jan 2021 09:30:56 +0000 (10:30 +0100)
committerRichard Biener <rguenther@suse.de>
Thu, 21 Jan 2021 09:30:56 +0000 (10:30 +0100)
As reported this now XPASSes with ranger.

2021-01-21  Richard Biener  <rguenther@suse.de>

* gcc.dg/Walloca-2.c: Un-XFAIL.

gcc/testsuite/gcc.dg/Walloca-2.c

index 1cf9165c59f9e813e535d56d36e713884770a4ce..c81813e0daac79eea6ca7dfb046df820f8edf2b4 100644 (file)
@@ -9,11 +9,7 @@ g1 (int n)
 {
   void *p;
   if (n > 0 && n < 2000)
-    // FIXME: This is a bogus warning, and is currently happening on
-    // 32-bit targets because VRP is not giving us any range info for
-    // the argument to __builtin_alloca.  This should be fixed by the
-    // upcoming range work.
-    p = __builtin_alloca (n); // { dg-bogus "unbounded use of 'alloca'" "" { xfail { ! lp64 } } }
+    p = __builtin_alloca (n); // { dg-bogus "unbounded use of 'alloca'" "" }
   else
     p = __builtin_malloc (n);
   f (p);