mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-06 05:20:26 +08:00
re PR target/57845 (ICE with -freg-struct-return on SPARC)
PR target/57845 * config/sparc/sparc.c (sparc_function_value_1): In 32-bit mode, do not promote the mode for aggregate types. From-SVN: r230074
This commit is contained in:
parent
3a40d81dcd
commit
fbae25c008
@ -1,9 +1,15 @@
|
||||
2015-11-09 Eric Botcazou <ebotcazou@adacore.com>
|
||||
|
||||
PR target/57845
|
||||
* config/sparc/sparc.c (sparc_function_value_1): In 32-bit mode, do
|
||||
not promote the mode for aggregate types.
|
||||
|
||||
2015-11-09 Nathan Sidwell <nathan@codesourcery.com>
|
||||
|
||||
* omp-low.h (replace_oacc_fn_attrib, build_oacc_routine_dims): Declare.
|
||||
* omp-low.c (build_oacc_routine_dims): New.
|
||||
|
||||
2015-11-08 Michael Meissner <meissner@linux.vnet.ibm.com>
|
||||
2015-11-09 Michael Meissner <meissner@linux.vnet.ibm.com>
|
||||
|
||||
* config/rs6000/constraints.md (wF constraint): New constraints
|
||||
for power9/toc fusion.
|
||||
|
@ -7329,9 +7329,10 @@ sparc_function_value_1 (const_tree type, machine_mode mode,
|
||||
mode = word_mode;
|
||||
}
|
||||
|
||||
/* We should only have pointer and integer types at this point. This must
|
||||
match sparc_promote_function_mode. */
|
||||
/* We should only have pointer and integer types at this point, except with
|
||||
-freg-struct-return. This must match sparc_promote_function_mode. */
|
||||
else if (TARGET_ARCH32
|
||||
&& !(type && AGGREGATE_TYPE_P (type))
|
||||
&& mclass == MODE_INT
|
||||
&& GET_MODE_SIZE (mode) < UNITS_PER_WORD)
|
||||
mode = word_mode;
|
||||
|
@ -1,4 +1,10 @@
|
||||
2015-11-08 Michael Meissner <meissner@linux.vnet.ibm.com>
|
||||
2015-11-09 Eric Botcazou <ebotcazou@adacore.com>
|
||||
|
||||
* gcc.target/sparc/sparc-ret.c: Rename to...
|
||||
* gcc.target/sparc/sparc-ret-1.c: ...this.
|
||||
* gcc.target/sparc/sparc-ret-2.c: New test.
|
||||
|
||||
2015-11-09 Michael Meissner <meissner@linux.vnet.ibm.com>
|
||||
|
||||
* lib/target-supports.exp (check_p8vector_hw_available): Split
|
||||
long line.
|
||||
|
13
gcc/testsuite/gcc.target/sparc/sparc-ret-2.c
Normal file
13
gcc/testsuite/gcc.target/sparc/sparc-ret-2.c
Normal file
@ -0,0 +1,13 @@
|
||||
/* PR target/57845 */
|
||||
|
||||
/* { dg-do compile } */
|
||||
/* { dg-options "-freg-struct-return" } */
|
||||
|
||||
struct S { short int i; };
|
||||
|
||||
struct S foo (short int i)
|
||||
{
|
||||
struct S s;
|
||||
s.i = i;
|
||||
return s;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user