Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3952)

Unified Diff: gcc/gcc/testsuite/gcc.dg/uninit-pr19430.c

Issue 3050029: [gcc] GCC 4.5.0=>4.5.1 (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/nacl-toolchain.git
Patch Set: Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gcc/gcc/testsuite/gcc.dg/uninit-I.c ('k') | gcc/gcc/testsuite/gcc.dg/utf-array.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gcc/gcc/testsuite/gcc.dg/uninit-pr19430.c
diff --git a/gcc/gcc/testsuite/gcc.dg/uninit-pr19430.c b/gcc/gcc/testsuite/gcc.dg/uninit-pr19430.c
index ecf9c0096275ca7d040b86e3b1568365f0fc1b0a..53810c553e1c6aebf6def1e416867ffa25e04e60 100644
--- a/gcc/gcc/testsuite/gcc.dg/uninit-pr19430.c
+++ b/gcc/gcc/testsuite/gcc.dg/uninit-pr19430.c
@@ -29,7 +29,7 @@ void frob(int *pi);
int main(void)
{
int i;
- printf("i = %d\n", i); /* { dg-warning "'i' is used uninitialized in this function" } */
+ printf("i = %d\n", i); /* { dg-warning "'i' is used uninitialized in this function" "" { xfail *-*-* } } */
frob(&i);
return 0;
@@ -38,6 +38,6 @@ int main(void)
void foo3(int*);
void bar3(void) {
int x;
- if(x) /* { dg-warning "'x' is used uninitialized in this function" "uninitialized" } */
+ if(x) /* { dg-warning "'x' is used uninitialized in this function" "uninitialized" { xfail *-*-* } } */
foo3(&x);
}
« no previous file with comments | « gcc/gcc/testsuite/gcc.dg/uninit-I.c ('k') | gcc/gcc/testsuite/gcc.dg/utf-array.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698