blob: 43f0463ac4efed81b93f192cfecfebe83fd5cb1f [file] [log] [blame]
Devang Patel150d2df2011-01-06 21:40:22 +00001// RUN: %clang_cc1 -g %s -o /dev/null
2// PR 8913
3
4typedef __uint128_t word128;
5static const word128 m126 = 0xffffffffffffffffULL;
6word128 foo() {
7 return m126;
8}