repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
s390
/
function-align3.c
blob
adb79763d4ae440804ec4f35a995e1978ba4f18d
1
/* { dg-do run } */
2
/* { dg-options "-Os -march=z13" } */
3
4
#include <assert.h>
5
#include <stdint.h>
6
7
__attribute__
((
noinline
))
8
void
bar
() {}
9
10
__attribute__
((
noinline
))
11
__attribute__
((
optimize
(
"O2"
)))
12
void
baf
() {}
13
14
int
main
()
15
{
16
bar
();
17
baf
();
18
19
void
*
g
= &
baf
;
20
21
assert
( ((
uintptr_t
)
g
%
16
) ==
0
);
22
}