* decl.c (make_rtl_for_local_static): Don't create register RTL
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / static10.C
blob432e07b9aca3a867403b5eb54a487502baeb211e
1 // Build don't link:
2 // Origin: Ulrich Drepper <drepper@cygnus.com>
3 // Special g++ Options: -w
5 struct st
7   int a;
8 };
10 int
11 foo (int a)
13   static const st i = { 0 };
15   if (i.a == a)
16     return 0;