Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.target / s390 / function-align3.c
blobadb79763d4ae440804ec4f35a995e1978ba4f18d
1 /* { dg-do run } */
2 /* { dg-options "-Os -march=z13" } */
4 #include <assert.h>
5 #include <stdint.h>
7 __attribute__((noinline))
8 void bar () {}
10 __attribute__((noinline))
11 __attribute__((optimize("O2")))
12 void baf () {}
14 int main ()
16 bar ();
17 baf ();
19 void *g = &baf;
21 assert ( ((uintptr_t)g % 16) == 0);