* expmed.c (flip_storage_order): Deal with complex modes specially.
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20030718-1.c
blob2a113f95e194c4dd570c6ac84b09d1933c74d57c
1 /* PR c/10320
2 The function temp was not being emitted in a prerelease of 3.4 20030406.
3 Contributed by pinskia@physics.uc.edu */
5 static inline void temp();
6 int main()
8 temp();
9 return 0;
11 static void temp(){}