Files
clang-p2996/clang/test/CodeGenCXX/debug-info-large-constant.cpp
Devang Patel c07c98f853 Add target triple.
llvm-svn: 122980
2011-01-06 22:30:05 +00:00

9 lines
191 B
C++

// RUN: %clang_cc1 -g -triple=x86_64-apple-darwin %s -o /dev/null
// PR 8913
typedef __uint128_t word128;
static const word128 m126 = 0xffffffffffffffffULL;
word128 foo() {
return m126;
}