repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
tree-ssa
/
pr24238.C
blob
3fdd5784eb8f72aab9ff2f848d893b24afceb2f5
1
/* { dg-do compile } */
2
/* { dg-options "-O2" } */
3
4
typedef struct SDL_Rect {
5
unsigned short w, h;
6
}SDL_Rect;
7
SDL_Rect *location();
8
SDL_Rect inner_location()
9
{
10
SDL_Rect r = *location();
11
r.w -= 1;
12
return r;
13
}