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