From: Marek Polacek Date: Mon, 6 Oct 2014 13:48:31 +0000 (+0000) Subject: gctest.c: Fix defaulting to int. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=63b9f71bb35359333efbc5a57073abea111eb496;p=gcc.git gctest.c: Fix defaulting to int. boehm-gc/ * testsuite/boehm-gc.c/gctest.c: Fix defaulting to int. gcc/testsuite/ * c-c++-common/raw-string-3.c: Use -std=gnu89 for C. * g++.dg/lto/pr54625-1_0.c: Fix defaulting to int. * g++.dg/lto/pr54625-2_0.c: Likewise. * gcc.misc-tests/gcov-14.c: Use -fgnu89-inline. From-SVN: r215943 --- diff --git a/boehm-gc/ChangeLog b/boehm-gc/ChangeLog index 50a0802d9d8..94692f09a74 100644 --- a/boehm-gc/ChangeLog +++ b/boehm-gc/ChangeLog @@ -1,3 +1,7 @@ +2014-10-06 Marek Polacek + + * testsuite/boehm-gc.c/gctest.c: Fix defaulting to int. + 2014-05-13 Bernd Edlinger Fix current cygwin-64 build problems. diff --git a/boehm-gc/testsuite/boehm-gc.c/gctest.c b/boehm-gc/testsuite/boehm-gc.c/gctest.c index 1180ab152ad..cc03e96e554 100644 --- a/boehm-gc/testsuite/boehm-gc.c/gctest.c +++ b/boehm-gc/testsuite/boehm-gc.c/gctest.c @@ -1701,6 +1701,7 @@ int APIENTRY WinMain(HINSTANCE instance, HINSTANCE prev, LPSTR cmd, int n) #ifdef PCR +int test() { PCR_Th_T * th1; @@ -1738,6 +1739,7 @@ void * thr_run_one_test(void * arg) #endif #if defined(GC_SOLARIS_THREADS) && !defined(GC_SOLARIS_PTHREADS) +int main() { thread_t th1; @@ -1781,6 +1783,7 @@ main() --> bad news #endif +int main() { pthread_t th1; diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 8749053a14b..154a7702d3c 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,10 @@ +2014-10-06 Marek Polacek + + * c-c++-common/raw-string-3.c: Use -std=gnu89 for C. + * g++.dg/lto/pr54625-1_0.c: Fix defaulting to int. + * g++.dg/lto/pr54625-2_0.c: Likewise. + * gcc.misc-tests/gcov-14.c: Use -fgnu89-inline. + 2014-10-06 Marek Polacek * gcc.target/i386/20040112-1.c: Fix defaulting to int. diff --git a/gcc/testsuite/c-c++-common/raw-string-3.c b/gcc/testsuite/c-c++-common/raw-string-3.c index 1dde113d255..326e30997cf 100644 --- a/gcc/testsuite/c-c++-common/raw-string-3.c +++ b/gcc/testsuite/c-c++-common/raw-string-3.c @@ -1,7 +1,7 @@ // If not c++0x/gnu99, the {,u,u8,U,L}R prefix should be parsed as separate // token. // { dg-do compile } -// { dg-options "" { target c } } +// { dg-options "-std=gnu89" { target c } } // { dg-options "-std=c++98" { target c++ } } const void *s0 = R"(a)"; // { dg-error "was not declared|undeclared" "undeclared" } diff --git a/gcc/testsuite/g++.dg/lto/pr54625-1_0.c b/gcc/testsuite/g++.dg/lto/pr54625-1_0.c index 5ab90ddddee..48bbdf02de7 100644 --- a/gcc/testsuite/g++.dg/lto/pr54625-1_0.c +++ b/gcc/testsuite/g++.dg/lto/pr54625-1_0.c @@ -3,6 +3,7 @@ float a; double sin (); +void speex_resampler_init_frac () { a = sin (0); diff --git a/gcc/testsuite/g++.dg/lto/pr54625-2_0.c b/gcc/testsuite/g++.dg/lto/pr54625-2_0.c index 6511ba5cc62..3e67d4f5b4e 100644 --- a/gcc/testsuite/g++.dg/lto/pr54625-2_0.c +++ b/gcc/testsuite/g++.dg/lto/pr54625-2_0.c @@ -3,6 +3,7 @@ float a; double sin (); +void update_filter () { a = sin (0); diff --git a/gcc/testsuite/gcc.misc-tests/gcov-14.c b/gcc/testsuite/gcc.misc-tests/gcov-14.c index de7ac0d2ab2..78dd7bedd76 100644 --- a/gcc/testsuite/gcc.misc-tests/gcov-14.c +++ b/gcc/testsuite/gcc.misc-tests/gcov-14.c @@ -1,6 +1,6 @@ /* Test gcov extern inline. */ -/* { dg-options "-O2 -fprofile-arcs -ftest-coverage" } */ +/* { dg-options "-O2 -fprofile-arcs -ftest-coverage -fgnu89-inline" } */ /* The following line arranges that Darwin has behavior like elf weak import. */ /* { dg-additional-options "-flat_namespace -undefined suppress" { target *-*-darwin* } } */ /* { dg-require-weak "" } */