2005-02-26 James A. Morrison <phython@gcc.gnu.org>
* compile/unsigned.tree: New test.
From-SVN: r95579
+2005-02-26 James A. Morrison <phython@gcc.gnu.org>
+
+ * compile/unsigned.tree: New test.
+
2005-02-24 James A. Morrison <phython@gcc.gnu.org>
PR other/19896
--- /dev/null
+// { dg-do compile }
+// { dg-options "-fdump-tree-generic" }
+external_reference void abort ();
+external_reference void exit (int status);
+external_definition int main (int argc, int argv);
+
+main
+{
+ automatic unsigned int bar = 2147483649;
+ automatic unsigned int baz = 2147483649;
+
+ if (bar == baz) {
+ abort ();
+ } else {
+ exit (0);
+ }
+ return +1;
+}
+// { dg-final { scan-tree-dump-not "\\\(int\\\)" "generic" } }