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
libstdc++: Improve comment for _Hashtable::_M_insert_unique_node
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
tic6x
/
rotdi16.c
blob
33b052ad4326c55f52918176b07395cf74ffa142
1
/* { dg-do run } */
2
/* { dg-options "-O2" } */
3
4
#include <stdlib.h>
5
6
unsigned long long
z
=
0x012389ab4567cdef
ull
;
7
8
int
main
()
9
{
10
unsigned long long
z2
= (
z
<<
48
) | (
z
>>
16
);
11
if
(
z2
!=
0xcdef012389ab4567
ull
)
12
abort
();
13
exit
(
0
);
14
}