Fix bogus failure of uninit-19.c for avr
authorSenthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com>
Wed, 23 Nov 2016 09:49:25 +0000 (09:49 +0000)
committerSenthil Kumar Selvaraj <saaadhu@gcc.gnu.org>
Wed, 23 Nov 2016 09:49:25 +0000 (09:49 +0000)
commitbaf53c4739a68b3307ce28bfeffc903fa641b946
treeefd67d5b026281797943f4c7287fc36442421d04
parenta80504892ef9696ffe81248667798f1ac7d5a678
Fix bogus failure of uninit-19.c for avr

The test fails for avr because fn1 does not get inlined into fn2. Inlining
occurs for x86_64 because fn1's computed size equals call_stmt_size. For the
avr, 32 bit memory moves are more expensive, and b[3] = p10[a] results in
a bigger size for fn1, preventing the inlining.

Add -finline-small-functions to force early inliner to inline fn1.

gcc/testsuite/
2016-11-23  Senthil Kumar Selvaraj  <senthil_kumar.selvaraj@atmel.com>

* gcc.dg/uninit-19.c: Add -finline-small-functions for avr.

From-SVN: r242742
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/uninit-19.c