OSDN Git Service

Formatting fixes.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / 20030612-1.c
1 static inline void
2 foo (long long const v0, long long const v1)
3 {
4   bar (v0 == v1);
5 }
6
7 void
8 test (void)
9 {
10   foo (0, 1);
11 }