diff options
author | Khem Raj <raj.khem@gmail.com> | 2013-03-10 23:28:13 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-03-12 18:26:35 +0000 |
commit | 5d8ef98225773a6ec88b5e1a76ce01d76163b3a5 (patch) | |
tree | 06d1140465e576126f0ea734cb4e9a1d4b508134 /meta/recipes-devtools/gcc/gcc-4.7 | |
parent | e33df55e69c5c517bcbc85452292740fe3b669da (diff) | |
download | openembedded-core-5d8ef98225773a6ec88b5e1a76ce01d76163b3a5.tar.gz openembedded-core-5d8ef98225773a6ec88b5e1a76ce01d76163b3a5.tar.bz2 openembedded-core-5d8ef98225773a6ec88b5e1a76ce01d76163b3a5.zip |
gcc-4.7: Fix incorrect warning with -Wcast-qual
This patch backport the fix where -Wcast-qual
reports a bogus warning with 4.7.2, There is
no workaround in code that can be done to avoid
it hence the fix to gcc is backported.
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/recipes-devtools/gcc/gcc-4.7')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-4.7/wcast-qual-PR55383.patch | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-4.7/wcast-qual-PR55383.patch b/meta/recipes-devtools/gcc/gcc-4.7/wcast-qual-PR55383.patch new file mode 100644 index 0000000000..7c5bbe7620 --- /dev/null +++ b/meta/recipes-devtools/gcc/gcc-4.7/wcast-qual-PR55383.patch @@ -0,0 +1,43 @@ +This is a backport from gcc bugzilla + +http://gcc.gnu.org/bugzilla/show_bug.cgi?id=55383 + +fixes wrong warning behavior which has no workaround +other than disabling the warning + +Upstream-Status: Backport + +Signed-off-by: Khem Raj <raj.khem@gmail.com> + +Index: gcc-4.7.2/gcc/c-typeck.c +=================================================================== +--- gcc-4.7.2.orig/gcc/c-typeck.c 2012-09-13 10:04:44.000000000 -0700 ++++ gcc-4.7.2/gcc/c-typeck.c 2013-03-10 23:09:17.610899536 -0700 +@@ -4557,7 +4557,7 @@ + /* There are qualifiers present in IN_OTYPE that are not present + in IN_TYPE. */ + warning_at (loc, OPT_Wcast_qual, +- "cast discards %q#v qualifier from pointer target type", ++ "cast discards %qv qualifier from pointer target type", + discarded); + + if (added || discarded) +Index: gcc-4.7.2/gcc/testsuite/c-c++-common/Wcast-qual-1.c +=================================================================== +--- gcc-4.7.2.orig/gcc/testsuite/c-c++-common/Wcast-qual-1.c 2011-04-07 14:47:38.000000000 -0700 ++++ gcc-4.7.2/gcc/testsuite/c-c++-common/Wcast-qual-1.c 2013-03-10 23:15:45.610894589 -0700 +@@ -85,11 +85,11 @@ + void + f4 (void * const **bar) + { +- const void ***p9 = (const void ***) bar; /* { dg-warning "cast" } */ ++ const void ***p9 = (const void ***) bar; /* { dg-warning "cast discards .const. qualifier" } */ + void * const **p11 = (void * const **) bar; +- void ** const *p13 = (void ** const *) bar; /* { dg-warning "cast" } */ ++ void ** const *p13 = (void ** const *) bar; /* { dg-warning "cast discards .const. qualifier" } */ + const void * const **p15 = (const void * const **) bar; /* { dg-warning "cast" } */ +- const void ** const *p17 = (const void ** const *) bar; /* { dg-warning "cast" } */ ++ const void ** const *p17 = (const void ** const *) bar; /* { dg-warning "cast discards .const. qualifier" } */ + void * const * const * p19 = (void * const * const *) bar; + const void * const * const *p21 = (const void * const * const *) bar; + } |