Commit 1a1477a2 by Jakub Jelinek Committed by Jakub Jelinek

re PR target/59927 (ICE sorry, unimplemented: ms_abi attribute requires…

re PR target/59927 (ICE sorry, unimplemented: ms_abi attribute requires -maccumulate-outgoing-args or subtarget optimization implying it)

	PR target/59927
	* gcc.target/i386/pr59927.c: New test.

From-SVN: r207686
parent d63f1311
2014-02-11 Jakub Jelinek <jakub@redhat.com>
PR target/59927
* gcc.target/i386/pr59927.c: New test.
2014-02-10 Richard Sandiford <rdsandiford@googlemail.com>
* gcc.dg/vect/pr57741-3.c: Require vect_int.
......
/* PR target/59927 */
/* { dg-do compile } */
/* { dg-options "-O2 -g" } */
extern void baz (int) __attribute__ ((__ms_abi__));
void
foo (void (__attribute__ ((ms_abi)) *fn) (int))
{
fn (0);
}
void
bar (void)
{
baz (0);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment