From: manu Date: Tue, 22 Jan 2008 14:19:01 +0000 (+0000) Subject: Missed testcases in earlier commit. X-Git-Tag: upstream/4.9.2~44048 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8e24b9610a705b4b545607a121fdceb83771b676;p=platform%2Fupstream%2Flinaro-gcc.git Missed testcases in earlier commit. 2008-01-22 Manuel Lopez-Ibanez PR 32102 testsuite/ * gcc.dg/Wstrict-overflow-21.c: New. * g++.dg/warn/Wstrict-aliasing-8.C: New. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@131722 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/testsuite/g++.dg/warn/Wstrict-aliasing-8.C b/gcc/testsuite/g++.dg/warn/Wstrict-aliasing-8.C new file mode 100644 index 0000000..497565e --- /dev/null +++ b/gcc/testsuite/g++.dg/warn/Wstrict-aliasing-8.C @@ -0,0 +1,20 @@ +/* { dg-do compile } */ +/* { dg-options "-Wstrict-aliasing=2 -O2 -Wall" } */ + +int a[2]; + +double *foo1(void) +{ + return (double *)a; /* { dg-warning "strict-aliasing" } */ +} + +double *foo2(void) +{ + return (double *)&a[0]; /* { dg-warning "strict-aliasing" } */ +} + +__complex__ double x; +int *bar(void) +{ + return (int *)&__imag__ x; /* { dg-warning "strict-aliasing" } */ +} diff --git a/gcc/testsuite/gcc.dg/Wstrict-overflow-21.c b/gcc/testsuite/gcc.dg/Wstrict-overflow-21.c new file mode 100644 index 0000000..57e9465 --- /dev/null +++ b/gcc/testsuite/gcc.dg/Wstrict-overflow-21.c @@ -0,0 +1,12 @@ +/* PR 32102: -Wall stomps on -Wstrict-overflow */ +/* { dg-do compile } */ +/* { dg-options "-fstrict-overflow -O2 -Wstrict-overflow=2 -Wall" } */ +int +foo () +{ + int i, bits; + for (i = 1, bits = 1; i > 0; i += i) /* { dg-warning "assuming signed overflow does not occur" "correct warning" } */ + ++bits; + return bits; +} +