1f1479dc91
* decl.c (make_rtl_for_local_static): Don't create register RTL for addressable constants. From-SVN: r29945
18 lines
201 B
C
18 lines
201 B
C
// Build don't link:
|
|
// Origin: Ulrich Drepper <drepper@cygnus.com>
|
|
// Special g++ Options: -w
|
|
|
|
struct st
|
|
{
|
|
int a;
|
|
};
|
|
|
|
int
|
|
foo (int a)
|
|
{
|
|
static const st i = { 0 };
|
|
|
|
if (i.a == a)
|
|
return 0;
|
|
}
|