Commit 0ab6a7ba by Mike Stump

Merge in xfails from PR14107.

From-SVN: r82999
parent 55c45226
...@@ -18,10 +18,10 @@ ...@@ -18,10 +18,10 @@
struct struct00 { }; struct struct00 { };
int global_function_0 () { int global_function_0 () {
} // { dg-error "" } } // { dg-error "" "" { xfail *-*-* } }
struct00 global_function_1 () { struct00 global_function_1 () {
} // { dg-error "" } } // { dg-error "" "" { xfail *-*-* } }
struct struct0 { struct struct0 {
...@@ -41,9 +41,9 @@ struct struct1 { ...@@ -41,9 +41,9 @@ struct struct1 {
}; };
int struct1_member_function_0 () { int struct1_member_function_0 () {
} // { dg-error "" } } // { dg-error "" "" { xfail *-*-* } }
struct1 struct1::struct1_member_function_1 () { struct1 struct1::struct1_member_function_1 () {
} // { dg-error "" } } // { dg-error "" "" { xfail *-*-* } }
int main () { return 0; } int main () { return 0; }
// { dg-do assemble } // { dg-do assemble }
// { dg-options "-Wno-deprecated -Wreturn-type" } // { dg-options "-Wno-deprecated -Wreturn-type" }
//
// GROUPS passed i960 // GROUPS passed i960
/* /*
Bug Id: bnr Bug Id: bnr
...@@ -101,7 +102,7 @@ warn_return_1 () ...@@ -101,7 +102,7 @@ warn_return_1 ()
{ {
foo f; foo f;
printf ("returning 1\n"); printf ("returning 1\n");
} // { dg-warning "" } control reaches end } // { dg-warning "" "" { xfail *-*-* } } control reaches end
int int
warn_return_arg (int arg) warn_return_arg (int arg)
...@@ -109,7 +110,7 @@ warn_return_arg (int arg) ...@@ -109,7 +110,7 @@ warn_return_arg (int arg)
foo f; foo f;
printf ("returning %d\n", arg); printf ("returning %d\n", arg);
arg; arg;
} // { dg-warning "" } control reaches end } // { dg-warning "" "" { xfail *-*-* } } control reaches end
int int
warn_return_sum (int x, int y) warn_return_sum (int x, int y)
...@@ -117,20 +118,20 @@ warn_return_sum (int x, int y) ...@@ -117,20 +118,20 @@ warn_return_sum (int x, int y)
foo f; foo f;
printf ("returning %d+%d\n", x, y); printf ("returning %d+%d\n", x, y);
x + y; x + y;
} // { dg-warning "" } control reaches end } // { dg-warning "" "" { xfail *-*-* } } control reaches end
foo foo
warn_return_foo () warn_return_foo ()
{ {
foo f; foo f;
printf ("returning foo\n"); printf ("returning foo\n");
} // { dg-warning "" } control reaches end } // { dg-warning "" "" { xfail *-*-* } } control reaches end
foo foo
warn_foo_parm_returns_foo (foo f) warn_foo_parm_returns_foo (foo f)
{ {
f; f;
} // { dg-warning "" } control reaches end } // { dg-warning "" "" { xfail *-*-* } } control reaches end
main () main ()
{ // { dg-warning "" } no type { // { dg-warning "" } no type
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment