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
2017-09-26 Thomas Koenig <tkoenig@gcc.gnu.org>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr69644.c
blob
c60b19170291502f392f8473124a13a8621f632a
1
/* PR target/69644 */
2
/* { dg-do compile } */
3
4
int
5
main
()
6
{
7
unsigned short
x
=
0x8000
;
8
if
(!
__sync_bool_compare_and_swap
(&
x
,
0x8000
,
0
) ||
x
)
9
__builtin_abort
();
10
return
0
;
11
}